16 lines
371 B
Go
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"`
|
|
}
|