github.com/TeaOSLab/EdgeNode@v1.3.8/internal/utils/kvstore/item.go (about)

     1  // Copyright 2024 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
     2  
     3  package kvstore
     4  
     5  type Item[T any] struct {
     6  	Key      string
     7  	Value    T
     8  	FieldKey []byte
     9  }