Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
stevepartridge committed Aug 10, 2020
1 parent ba0dadb commit 52b1b4f
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# geocodio

[![GoDoc](https://godoc.org/github.com/stevepartridge/geocodio?status.svg)](https://godoc.org/github.com/stevepartridge/geocodio) [![Go Report Card](https://goreportcard.com/badge/github.com/stevepartridge/geocodio)](https://goreportcard.com/report/github.com/stevepartridge/geocodio)
[![GoDoc](https://godoc.org/github.com/stevepartridge/geocodio?status.svg)](https://godoc.org/github.com/stevepartridge/geocodio)
[![Go Report Card](https://goreportcard.com/badge/github.com/stevepartridge/geocodio)](https://goreportcard.com/report/github.com/stevepartridge/geocodio)
[![Coverage](http://gocover.io/_badge/github.com/stevepartridge/service)](http://gocover.io/github.com/stevepartridge/geocodio)

Go client for [Geocodio](http://geocod.io) API v1

Expand All @@ -15,7 +17,9 @@ import(
)

func main() {
gc, err := geocodio.NewGeocodio("YOUR_API_KEY")
gc, err := geocodio.New("YOUR_API_KEY")
// or if env var GEOCODIO_API_KEY is set
// gc, err := geocodio.New()
if err != nil {
panic(err)
}
Expand All @@ -36,7 +40,9 @@ import(
)

func main() {
gc, err := geocodio.NewGeocodio("YOUR_API_KEY")
gc, err := geocodio.NewGeocodio("YOUR_API_KEY")
// or if env var GEOCODIO_API_KEY is set
// gc, err := geocodio.New()
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 52b1b4f

Please sign in to comment.