23 lines
288 B
Go
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
|
|
}
|