Files
EdgeAPI/internal/dnsclients/dnspod/response_interface.go
2022-10-20 18:06:27 +08:00

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