16 lines
274 B
Go
16 lines
274 B
Go
|
package utils
|
||
|
|
||
|
import "github.com/animenotifier/arn"
|
||
|
|
||
|
// CalendarDay is a calendar day.
|
||
|
type CalendarDay struct {
|
||
|
Name string
|
||
|
Entries []*CalendarEntry
|
||
|
}
|
||
|
|
||
|
// CalendarEntry is a calendar entry.
|
||
|
type CalendarEntry struct {
|
||
|
Anime *arn.Anime
|
||
|
Episode *arn.AnimeEpisode
|
||
|
}
|