8 lines
148 B
Go
8 lines
148 B
Go
|
package types
|
||
|
|
||
|
type Zone struct {
|
||
|
DNSServer string `json:"dns-server"`
|
||
|
Name string `json:"name"`
|
||
|
TSIGKeyName string `json:"tsig-key"`
|
||
|
}
|