mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-29 03:20:24 +08:00
9 lines
182 B
Go
9 lines
182 B
Go
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package dnspod
|
|
|
|
type ResponseInterface interface {
|
|
IsOk() bool
|
|
LastError() (code string, message string)
|
|
}
|