mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-29 18:38:56 +03:00
12 lines
260 B
Go
12 lines
260 B
Go
|
package websvc
|
||
|
|
||
|
// Path constants
|
||
|
const (
|
||
|
PathHealthCheck = "/health-check"
|
||
|
|
||
|
PathV1SettingsAll = "/api/v1/settings/all"
|
||
|
PathV1SettingsDNS = "/api/v1/settings/dns"
|
||
|
PathV1SettingsHTTP = "/api/v1/settings/http"
|
||
|
PathV1SystemInfo = "/api/v1/system/info"
|
||
|
)
|