We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57bfbdc commit a5a75e3Copy full SHA for a5a75e3
README.md
@@ -6,37 +6,4 @@
6
7
`go get github.com/labstack/labstack-go`
8
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
42
## [Docs](https://labstack.com/docs) | [Forum](https://forum.labstack.com)
0 commit comments