1
0
mirror of https://github.com/taigrr/godns synced 2025-01-18 04:03:25 -08:00
godns/response_entity.go
2014-05-13 00:58:07 +08:00

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
}