Files

20 lines
380 B
Go

package api
const (
RouteHealth = "/health"
RouteStats = "/stats"
RouteQuery = "/v1/query"
RouteQueryBatch = "/v1/querybatch"
RouteDownload = "/v1/download"
)
const (
StatusHealthy = "healthy"
StatusInitializing = "initializing"
)
const (
ContentTypeJSON = "application/json"
ErrorMessageDataNotAvailable = "Data not available yet"
)