2023-03-08 16:16:21 +01:00
|
|
|
// 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 {
|
2023-03-08 22:05:15 +01:00
|
|
|
Set(fingerprint string, status string) error
|
|
|
|
Contains(fingerprint string, status string) (bool, error)
|
2023-03-08 16:16:21 +01:00
|
|
|
Cleanup()
|
|
|
|
}
|