Files
opds-proxy/convert/convert.go
2024-07-12 19:36:08 +00:00

10 lines
256 B
Go

package convert
type Converter interface {
// Whether or not the converter is available
// Usually based on the availability of the underlying tool
Available() bool
// Convert the input file to the output file
Convert(input string) (string, error)
}