forked from cloudflare/cloudflare-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
consts.go
27 lines (21 loc) · 923 Bytes
/
consts.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package cloudflare
// RouteRoot represents the name of the route namespace.
type RouteRoot string
const (
defaultScheme = "https"
defaultHostname = "api.cloudflare.com"
defaultBasePath = "/client/v4"
userAgent = "cloudflare-go"
// AccountRouteRoot is the accounts route namespace.
AccountRouteRoot RouteRoot = "accounts"
// ZoneRouteRoot is the zones route namespace.
ZoneRouteRoot RouteRoot = "zones"
originCARootCertEccURL = "https://developers.cloudflare.com/ssl/static/origin_ca_ecc_root.pem"
originCARootCertRsaURL = "https://developers.cloudflare.com/ssl/static/origin_ca_rsa_root.pem"
// Used for testing.
testAccountID = "01a7362d577a6c3019a474fd6f485823"
testZoneID = "d56084adb405e0b7e32c52321bf07be6"
testUserID = "a81be4e9b20632860d20a64c054c4150"
testCertPackUUID = "a77f8bd7-3b47-46b4-a6f1-75cf98109948"
testTunnelID = "f174e90a-fafe-4643-bbbc-4a0ed4fc8415"
)