model/parser.go
2022-08-03 19:58:31 +02:00

13 lines
175 B
Go

package model
type Parser struct {
Identity string
TorrentParser TorrentParserFunc
FileParser FileParserFunc
}
func (p Parser) String() string {
return p.Identity
}