mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
681c604c22
Merge in DNS/adguard-home from nextapi-frontend-fs to master
Squashed commit of the following:
commit 3ed959f21939cf5590c27426af46906cbffed502
Merge: e60bbdd04 9fda7bfd3
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Tue Jun 13 13:37:00 2023 +0300
Merge branch 'master' into nextapi-frontend-fs
commit e60bbdd04ce841c1aaaa198cc9dc85ae14799ffa
Author: Ainar Garipov <A.Garipov@AdGuard.COM>
Date: Fri Jun 9 14:53:09 2023 +0300
next: support frontend fs
14 lines
310 B
Go
14 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"
|
|
)
|