goMuffin/databases/Memory.go
2025-06-01 17:03:28 +09:00

16 lines
371 B
Go

package databases
import "go.mongodb.org/mongo-driver/v2/bson"
type InsertMemory struct {
UserId string `bson:"user_id"`
Content string `bson:"content"`
Answer string `bson:"answer"`
}
type Memory struct {
Id bson.ObjectID `bson:"_id"`
UserId string `bson:"user_id"`
Content string `bson:"content"`
Answer string `bson:"answer"`
}