13 lines
175 B
Go
13 lines
175 B
Go
package model
|
|
|
|
type Parser struct {
|
|
Identity string
|
|
|
|
TorrentParser TorrentParserFunc
|
|
FileParser FileParserFunc
|
|
}
|
|
|
|
func (p Parser) String() string {
|
|
return p.Identity
|
|
}
|