mirror of
https://github.com/Cernobor/oko-server.git
synced 2025-02-24 08:27:17 +00:00
All checks were successful
continuous-integration/drone/push Build is passing
* API endpoint * dockerfile adds commit hash and build time during build
19 lines
613 B
Go
19 lines
613 B
Go
package server
|
|
|
|
const (
|
|
URIPing = "/ping"
|
|
URIBuildInfo = "/build-info"
|
|
URIHardFail = "/hard-fail"
|
|
URISoftFail = "/soft-fail"
|
|
URIReinit = "/reinit"
|
|
URIMapPack = "/mappack"
|
|
URIHandshake = "/handshake"
|
|
URIData = "/data"
|
|
URIDataPeople = "/data/people"
|
|
URIDataFeatures = "/data/features"
|
|
URIDataFeaturesPhoto = "/data/features/:feature/photos/:photo"
|
|
URITileserverRoot = "/tileserver"
|
|
URITileserver = URITileserverRoot + "/*x"
|
|
URITileTemplate = URITileserverRoot + "/map/tiles/{z}/{x}/{y}.pbf"
|
|
)
|