2022-06-12 01:15:14 +00:00

9 lines
179 B
Go

package custom
import "github.com/qdm12/gluetun/internal/models"
type Extractor interface {
Data(filepath string) (lines []string,
connection models.Connection, err error)
}