You've already forked directdnsonly-go
10 lines
269 B
Go
10 lines
269 B
Go
package responses
|
|
|
|
// Definition of expected fields in response to a DirectAdmin instance
|
|
type DAResponse struct {
|
|
Error int32 `url:"error"`
|
|
Exists int32 `url:"exists,omitempty"`
|
|
Message string `url:"text,omitempty"`
|
|
Details string `url:"details,omitempty"`
|
|
}
|