10 lines
277 B
Go
10 lines
277 B
Go
|
// Package cache includes a memory cache for ntfy-alertmanager.
|
||
|
package cache
|
||
|
|
||
|
// Cache is the interface that describes a cache for ntfy-alertmanager.
|
||
|
type Cache interface {
|
||
|
Set(fingerprint string, status string)
|
||
|
Contains(fingerprint string, status string) bool
|
||
|
Cleanup()
|
||
|
}
|