Files
EdgeNode/internal/ttlcache/item.go

7 lines
71 B
Go
Raw Normal View History

2020-11-21 21:43:03 +08:00
package ttlcache
type Item struct {
2023-04-08 13:49:41 +08:00
Value any
2020-11-21 21:43:03 +08:00
expiredAt int64
}