mirror of
https://github.com/safing/portmaster
synced 2025-09-01 10:09:11 +00:00
14 lines
269 B
Go
14 lines
269 B
Go
package account
|
|
|
|
// Customer Agent URLs.
|
|
const (
|
|
CAAuthenticateURL = "/authenticate"
|
|
CAProfileURL = "/user/profile"
|
|
CAGetTokensURL = "/tokens"
|
|
)
|
|
|
|
// Customer Hub URLs.
|
|
const (
|
|
CHAuthenticateURL = "/v1/authenticate"
|
|
CHUserProfileURL = "/v1/user_profile"
|
|
)
|