goMuffin/databases/Text.go

20 lines
488 B
Go

package databases
import (
"time"
"go.mongodb.org/mongo-driver/v2/bson"
)
type InsertText struct {
Text string `bson:"text" json:"text"`
Persona string `bson:"persona" json:"persona"`
CreatedAt time.Time `bson:"created_at"`
}
type Text struct {
Id bson.ObjectID `bson:"_id" json:"id"`
Text string `bson:"text" json:"text"`
Persona string `bson:"persona" json:"persona"`
CreatedAt time.Time `bson:"created_at" json:"created_at"`
}