mirror of
https://github.com/taigrr/godns
synced 2025-01-18 04:03:25 -08:00
21 lines
264 B
Go
21 lines
264 B
Go
package main
|
|
|
|
type status struct {
|
|
code string
|
|
message string
|
|
created_at string
|
|
}
|
|
|
|
type domain struct {
|
|
id int
|
|
name string
|
|
status string
|
|
records string
|
|
owner string
|
|
}
|
|
|
|
type domain_list struct {
|
|
ret_status status
|
|
domains []domain
|
|
}
|