From 0e4deae504ae33e607187aba734d95e0a882f828 Mon Sep 17 00:00:00 2001 From: Alexander Matveev Date: Tue, 26 Sep 2023 22:49:28 +0300 Subject: [PATCH] Fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 71d4689..63986c5 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ type Entity struct { CreatedAt time.Time `db:"created_at"` } -var structColumns = dbmap.Columns(reflect.TypeOf(event.Event{})) +var structColumns = dbmap.Columns(reflect.TypeOf(Entity{})) func main(){ // ...