fix: wrong tag

This commit is contained in:
Siwoo Jeon 2025-05-07 21:17:07 +09:00
parent 0897e80465
commit 7d19bd66df
Signed by: migan
GPG key ID: 036E9A8C5E8E48DA

View file

@ -18,7 +18,7 @@ type InsertLearn struct {
type Learn struct { type Learn struct {
Id bson.ObjectID `bson:"_id" json:"id"` Id bson.ObjectID `bson:"_id" json:"id"`
Command string `bson:"command" json:"command"` Command string `bson:"command" json:"command"`
Result string `bson:"Result" json:"result"` Result string `bson:"result" json:"result"`
UserId string `bson:"user_id" json:"user_id"` UserId string `bson:"user_id" json:"user_id"`
CreatedAt time.Time `bson:"created_at" json:"created_at"` CreatedAt time.Time `bson:"created_at" json:"created_at"`
} }