Files
waf-platform/EdgeAPI/internal/dnsclients/dnsla/response_base.go
2026-02-04 20:27:13 +08:00

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)
}