remove auto complete example

This commit is contained in:
Asim Aslam
2022-02-15 17:26:40 +00:00
parent 3e8a30c33a
commit b310d3e1e0

View File

@@ -1,15 +0,0 @@
package main
import (
"fmt"
"os"
"go.m3o.com/place"
)
// Autocomplete queries (coming soon)
func main() {
placeService := place.NewPlaceService(os.Getenv("M3O_API_TOKEN"))
rsp, err := placeService.Autocomplete(&place.AutocompleteRequest{})
fmt.Println(rsp, err)
}