initial commit

This commit is contained in:
2025-06-06 16:19:36 +02:00
commit c98bebd8bd
13 changed files with 265 additions and 0 deletions

14
parser.go Normal file
View File

@ -0,0 +1,14 @@
package model
type Parser struct {
Identity string
TorrentParser TorrentParserFunc
FileParser FileParserFunc
FileEncoding string
}
func (p Parser) String() string {
return p.Identity
}