withchao 65dbe8ef6a 1
2025-02-13 10:51:32 +08:00

10 lines
162 B
Go

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