1
0
mirror of https://github.com/TwiN/gatus.git synced 2026-02-08 07:34:17 +00:00
Files
gatus/vendor/github.com/TwinProduction/gocache/policy.go

9 lines
163 B
Go

package gocache
type EvictionPolicy string
var (
LeastRecentlyUsed EvictionPolicy = "LeastRecentlyUsed"
FirstInFirstOut EvictionPolicy = "FirstInFirstOut"
)