域名解析增加CloudFlare DNS支持

This commit is contained in:
GoEdgeLab
2021-04-15 17:02:01 +08:00
parent f85f626217
commit 0d97f52551
15 changed files with 582 additions and 40 deletions

View File

@@ -0,0 +1,12 @@
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package cloudflare
type ZonesResponse struct {
BaseResponse
Result []struct {
Id string `json:"id"`
Name string `json:"name"`
} `json:"result"`
}