type Todo struct {
Name string `bson:"name"`
IsCompleted bool `bson:"is_completed"`
References struct{} `bson:"references"`
Point []int `bson:"point"`
}
type User struct {
Name string `bson:"name"`
Age int `bson:"age"`
Allowed bool `bson:"allowed"`
Address Address `bson:"address"`
Cars struct{} `bson:"cars"`
Todos []Todo `bson:"todos"`
CreatedAt time.Time `bson:"created_at"`
}