mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 19:13:34 +00:00
17 lines
372 B
Go
17 lines
372 B
Go
package dns
|
|
|
|
type DomainResponse struct {
|
|
Name string `json:"name,omitempty"`
|
|
Token string `json:"token,omitempty"`
|
|
}
|
|
|
|
type AuthErrorResponse struct {
|
|
Status int `json:"status,omitempty"`
|
|
Message string `json:"msg,omitempty"`
|
|
Data authErrorData `json:"data,omitempty"`
|
|
}
|
|
|
|
type authErrorData struct {
|
|
NoDomain bool `json:"noDomain,omitempty"`
|
|
}
|