10 lines
178 B
Go
10 lines
178 B
Go
package utils
|
|
|
|
import "github.com/animenotifier/notify.moe/arn"
|
|
|
|
// HallOfFameEntry is an entry in the hall of fame.
|
|
type HallOfFameEntry struct {
|
|
Year int
|
|
Anime *arn.Anime
|
|
}
|