Just a bit of cleaning up

This commit is contained in:
2024-03-02 09:09:55 +01:00
parent 2da17014e4
commit 8f7ac979a3
5 changed files with 52 additions and 22 deletions

View File

@ -9,10 +9,10 @@ const (
type Role int
type User struct {
RejectedArticles *ArticleList
UserName string
FirstName string
LastName string
RejectedArticles []*Article
ID int64
Role
}