Skip to content

Commit a5a75e3

Browse files
committed
Bumped version
Signed-off-by: Vishal Rana <[email protected]>
1 parent 57bfbdc commit a5a75e3

File tree

1 file changed

+0
-33
lines changed

1 file changed

+0
-33
lines changed

README.md

-33
Original file line numberDiff line numberDiff line change
@@ -6,37 +6,4 @@
66

77
`go get github.com/labstack/labstack-go`
88

9-
## Quick Start
10-
11-
[Sign up](https://labstack.com/signup) to get an API key
12-
13-
Create a file `app.go` with the following content:
14-
15-
```go
16-
package main
17-
18-
import (
19-
"fmt"
20-
21-
"github.com/labstack/labstack-go"
22-
)
23-
24-
func main() {
25-
client := labstack.NewClient("<API_KEY>")
26-
geocode := client.Geocode()
27-
res, err := geocode.Address("eiffel tower")
28-
if err != nil {
29-
fmt.Println(err)
30-
} else {
31-
fmt.Printf("%+v", res)
32-
}
33-
}
34-
```
35-
36-
From terminal run your app:
37-
38-
```sh
39-
go run app.go
40-
```
41-
429
## [Docs](https://labstack.com/docs) | [Forum](https://forum.labstack.com)

0 commit comments

Comments
 (0)