aboutsummaryrefslogtreecommitdiff
path: root/user/anime/animelist.structs.go
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@protonmail.ch>2022-02-15 21:55:56 +0530
committerVidhu Kant Sharma <vidhukant@protonmail.ch>2022-02-15 21:55:56 +0530
commit831a57e8d065a01cefe40dd8545770064759eb13 (patch)
tree6531083aee49783e645cf57609a3cbbc64e4959d /user/anime/animelist.structs.go
parent74a5f1ce1594d01ef7caeb3c5fcac047a7d8f9b3 (diff)
somehow made UpdateAnime work decently
Diffstat (limited to 'user/anime/animelist.structs.go')
-rw-r--r--user/anime/animelist.structs.go18
1 files changed, 9 insertions, 9 deletions
diff --git a/user/anime/animelist.structs.go b/user/anime/animelist.structs.go
index d874f7b..06c40d1 100644
--- a/user/anime/animelist.structs.go
+++ b/user/anime/animelist.structs.go
@@ -29,14 +29,14 @@ type AnimeListRaw struct {
}
type UpdateAnimeData struct {
- Status string `json:"status"`
- IsRewatching bool `json:"is_rewatching"`
- Score int `json:"score"`
- EpWatched int `json:"num_watched_episodes"`
- Priority int `json:"priority"`
- TimesRewatched int `json:"num_times_rewatched"`
+ Status string
+ IsRewatching bool
+ Score int
+ EpWatched int
+ Priority int
+ TimesRewatched int
// NOTE: idk what RewatchValue is
- RewatchValue int `json:"rewatch_value"`
- Tags string `json:"tags"`
- Comments string `json:"comments"`
+ RewatchValue int
+ Tags string
+ Comments string
}