diff --git a/modules/structs/user.go b/modules/structs/user.go index 4e35b97..c7a1429 100644 --- a/modules/structs/user.go +++ b/modules/structs/user.go @@ -26,3 +26,11 @@ type User struct { CreatedAt time.Time UpdatedAt time.Time } + +type APIUser struct { + Id string + Hashtag string + Name string + AvatarUrl string + Points int +}