From 7d19bd66dff0d7cd05648924b64cb860dcf8e5dc Mon Sep 17 00:00:00 2001 From: Siwoo Jeon Date: Wed, 7 May 2025 21:17:07 +0900 Subject: [PATCH] fix: wrong tag --- databases/Learn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/databases/Learn.go b/databases/Learn.go index b89efee..81ce270 100644 --- a/databases/Learn.go +++ b/databases/Learn.go @@ -18,7 +18,7 @@ type InsertLearn struct { type Learn struct { Id bson.ObjectID `bson:"_id" json:"id"` 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"` CreatedAt time.Time `bson:"created_at" json:"created_at"` }