22 lines
456 B
Go
22 lines
456 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package dnsla
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/iwind/TeaGo/types"
|
|
)
|
|
|
|
type BaseResponse struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
}
|
|
|
|
func (this *BaseResponse) Success() bool {
|
|
return this.Code == 200
|
|
}
|
|
|
|
func (this *BaseResponse) Error() error {
|
|
return errors.New("code:" + types.String(this.Code) + ", message:" + this.Msg)
|
|
}
|