15 lines
310 B
Go
15 lines
310 B
Go
package websvc
|
|
|
|
// Path constants
|
|
const (
|
|
PathRoot = "/"
|
|
PathFrontend = "/*filepath"
|
|
|
|
PathHealthCheck = "/health-check"
|
|
|
|
PathV1SettingsAll = "/api/v1/settings/all"
|
|
PathV1SettingsDNS = "/api/v1/settings/dns"
|
|
PathV1SettingsHTTP = "/api/v1/settings/http"
|
|
PathV1SystemInfo = "/api/v1/system/info"
|
|
)
|