mongostore/model.go

14 lines
253 B
Go
Raw Normal View History

2020-03-22 01:01:55 +01:00
package mongostore
import (
"time"
"go.mongodb.org/mongo-driver/bson/primitive"
)
type Session struct {
ID primitive.ObjectID `bson:"_id,omitempty"`
Data []byte `bson:"data"`
Modified time.Time `bson:"modified"`
}