Initial commit

This commit is contained in:
2021-09-12 20:09:08 -04:00
commit 10cf806b73
5 changed files with 168 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package digitalocean
type DomainRecords struct {
Data string `json:"data"`
Id int64 `json:"id"`
Name string `json:"name"`
Type string `json:"type"`
}
type RecordsResponse struct {
DomainRecords []DomainRecords `json:"domain_records"`
}