Files
old-backend/services/location/mapbox_lib/http.go

10 lines
151 B
Go
Raw Normal View History

2023-10-12 05:23:34 +02:00
package mapbox
import (
"github.com/valyala/fasthttp"
)
type FastHttpClient interface {
Do(req *fasthttp.Request, resp *fasthttp.Response) error
}