10 lines
117 B
Go
10 lines
117 B
Go
package common
|
|
|
|
type ARecord struct {
|
|
Domain string
|
|
IP string
|
|
TTL int
|
|
Prio int
|
|
Disabled bool
|
|
}
|