Files
EdgeNode/internal/utils/kvstore/item.go

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
}