Files
waf-platform/EdgeNode/internal/utils/kvstore/item.go
2026-02-04 20:27:13 +08:00

10 lines
199 B
Go

// Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
package kvstore
type Item[T any] struct {
Key string
Value T
FieldKey []byte
}