Files
EdgeAPI/internal/utils/ttlcache/item.go

7 lines
79 B
Go

package ttlcache
type Item struct {
Value interface{}
expiredAt int64
}