mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-07 05:34:43 +08:00
* Added PowerDNS as dns provider * Remove unnecessary comments * Some tests * Implemented feedback
9 lines
231 B
Go
9 lines
231 B
Go
package cache
|
|
|
|
import "context"
|
|
|
|
// Client defines the interface for Cache operations.
|
|
type Client interface {
|
|
// Flush flush a cache-entry by name
|
|
Flush(ctx context.Context, serverID string, name string) (*FlushResult, error)
|
|
}
|