Files
EdgeNode/internal/utils/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
2024-05-08 11:10:56 +08:00
expiresAt int64
2020-11-21 21:43:03 +08:00
}