Add follow status to GetUserProfile

This commit is contained in:
Marco Realacci 2022-11-22 17:48:15 +01:00
parent 9968f9e66f
commit 09adc06e18
4 changed files with 9 additions and 3 deletions

View file

@ -43,5 +43,6 @@ type UserProfile struct {
Name string `json:"name"`
Following int64 `json:"following"`
Followers int64 `json:"followers"`
Followed bool `json:"followed"`
Photos int64 `json:"photos"` //todo: check json names
}