utils/convids/models.go

24 lines
288 B
Go
Raw Normal View History

2024-10-23 15:56:56 -05:00
package convids
type Data struct {
Config Config
Shows ShowMap
}
type Config struct {
Source string
Extensions []string
Shows []string
}
type ShowMap map[string]Shows
type Shows []Show
type Show struct {
Folder string
Pattern string
Name string
Anime bool
}