Add mkflex command

This commit is contained in:
Dan Jones 2025-07-16 11:40:25 -05:00
commit f4497aef7e
7 changed files with 333 additions and 1 deletions

View file

@ -1,6 +1,10 @@
package convids
import "regexp"
import (
"regexp"
"codeberg.org/danjones000/utils/types"
)
type Data struct {
Config *Config
@ -28,6 +32,13 @@ type Show struct {
Url bool
Backup string
Sources []string
Flexget struct {
Name string
Begin types.IntOrString
AlternateName []string `yaml:"alternate_name"`
Exact bool
Skip bool
}
re *regexp.Regexp
}