Files
open-im-server/pkg/common/storage/model/cache.go
T

10 lines
162 B
Go
Raw Normal View History

package model
import "time"
type Cache struct {
Key string `bson:"key"`
Value string `bson:"value"`
ExpireAt *time.Time `bson:"expire_at"`
}