model/parser.go

15 lines
197 B
Go
Raw Permalink Normal View History

2022-08-03 19:58:31 +02:00
package model
type Parser struct {
Identity string
TorrentParser TorrentParserFunc
FileParser FileParserFunc
2023-01-15 23:18:13 +01:00
FileEncoding string
2022-08-03 19:58:31 +02:00
}
func (p Parser) String() string {
return p.Identity
}