7 lines
144 B
Go
7 lines
144 B
Go
|
|
package mapbox
|
||
|
|
|
||
|
|
// Client covers all Mabpox API
|
||
|
|
type Client interface {
|
||
|
|
// Geocoder covers forward and reverse geocoding mapbox API
|
||
|
|
Geocoder
|
||
|
|
}
|