1
0
Fork 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
1 changed files with 1 additions and 1 deletions

View File

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