This commit is contained in:
daru
2022-07-31 14:50:56 +02:00
parent db4ca8e4cf
commit 92660df667
4 changed files with 26 additions and 11 deletions

View File

@@ -55,9 +55,10 @@ type AnimeStudio struct {
}
type Appointment struct {
Anime int64 `json:"anime"`
Time time.Time `json:"date"`
Users []string `json:"users"`
Anime int64 `json:"anime"`
Time time.Time `json:"date"`
Users []string `json:"users"`
Announced bool `json:"announced"`
}
type WatchUser struct {