Files
waf-platform/EdgeAPI/internal/dnsclients/dnspod/response_interface.go

9 lines
183 B
Go

// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package dnspod
type ResponseInterface interface {
IsOk() bool
LastError() (code string, message string)
}