Initial commit (code only without large binaries)
This commit is contained in:
9
EdgeAPI/internal/dnsclients/godaddy/response_domains.go
Normal file
9
EdgeAPI/internal/dnsclients/godaddy/response_domains.go
Normal file
@@ -0,0 +1,9 @@
|
||||
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||
|
||||
package godaddy
|
||||
|
||||
type DomainsResponse []struct {
|
||||
DomainId int64 `json:"domainId"`
|
||||
Domain string `json:"domain"`
|
||||
Status string `json:"status"`
|
||||
}
|
||||
10
EdgeAPI/internal/dnsclients/godaddy/response_records.go
Normal file
10
EdgeAPI/internal/dnsclients/godaddy/response_records.go
Normal file
@@ -0,0 +1,10 @@
|
||||
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||
|
||||
package godaddy
|
||||
|
||||
type RecordsResponse []struct {
|
||||
Data string `json:"data"`
|
||||
Name string `json:"name"`
|
||||
TTL int32 `json:"ttl"`
|
||||
Type string `json:"type"`
|
||||
}
|
||||
Reference in New Issue
Block a user