utils/convids/models.go
2024-10-23 15:56:56 -05:00

23 lines
288 B
Go

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
}