Just a bit of cleaning up

This commit is contained in:
2024-03-02 09:09:55 +01:00
parent aa7fcd6075
commit 655992c8b2
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
}