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
|
|
|
|
}
|