Files
EdgeAPI/internal/dnsclients/cloudflare/response_interface.go

9 lines
184 B
Go
Raw Normal View History

2021-04-15 17:02:01 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package cloudflare
type ResponseInterface interface {
IsOk() bool
LastError() (code int, message string)
}