Files
EdgeNode/internal/ttlcache/item.go

7 lines
76 B
Go
Raw Normal View History

2020-11-21 21:43:03 +08:00
package ttlcache
2023-10-05 08:28:16 +08:00
type Item[T any] struct {
Value T
2020-11-21 21:43:03 +08:00
expiredAt int64
}