1
0

In Article struct switched positions of Title and Date fields.

This commit is contained in:
Alexander Andreev 2023-09-24 19:03:29 +04:00
parent 0695aa46b3
commit 7f17ebd2c5
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -9,8 +9,8 @@ import (
type Article struct {
ID int64
Title string
Date time.Time
Title string
Description string
Body []byte
}