From 7f17ebd2c54be00fafd77cf79b855ed6c54e8a6b Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 24 Sep 2023 19:03:29 +0400 Subject: [PATCH] In Article struct switched positions of Title and Date fields. --- pkg/article/article.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/article/article.go b/pkg/article/article.go index 9dc6bbd..e17d4bb 100644 --- a/pkg/article/article.go +++ b/pkg/article/article.go @@ -9,8 +9,8 @@ import ( type Article struct { ID int64 - Title string Date time.Time + Title string Description string Body []byte }