mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-10 10:45:38 -06:00
9 lines
179 B
Go
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)
|
|
}
|