William Petit 1af7248a6f
All checks were successful
Cadoles/bouncer/pipeline/head This commit looks good
feat: reset proxy cache with sigusr2
2025-03-18 11:35:15 +01:00

8 lines
113 B
Go

package cache
type Cache[K comparable, V any] interface {
Get(key K) (V, bool)
Set(key K, value V)
Clear()
}