1
0
Fork 0

Reorder fields of Entry struct.

This commit is contained in:
Alexander Andreev 2023-05-06 22:16:40 +04:00
parent 723d2d4772
commit 32c1fa6aa1
Signed by: Arav
GPG Key ID: D22A817D95815393
1 changed files with 1 additions and 1 deletions

View File

@ -10,8 +10,8 @@ type Entry struct {
Created time.Time `json:"created"`
Name string `json:"name"`
Website string `json:"website,omitempty"`
Message string `json:"message"`
HideWebsite bool `json:"hide_website,omitempty"`
Message string `json:"message"`
Reply *Reply `json:"reply,omitempty"`
}