mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-08 19:40:24 +08:00
9 lines
183 B
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)
|
||
|
|
}
|