2022-06-11 01:34:30 +00:00
|
|
|
package custom
|
|
|
|
|
|
|
|
|
|
import "github.com/qdm12/gluetun/internal/models"
|
|
|
|
|
|
2022-06-12 00:57:37 +00:00
|
|
|
type Extractor interface {
|
2022-06-11 01:34:30 +00:00
|
|
|
Data(filepath string) (lines []string,
|
|
|
|
|
connection models.Connection, err error)
|
|
|
|
|
}
|