mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +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)
|
|
}
|