mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-07 04:20:12 +02:00
578ef768ab
- Remove exported interfaces unused locally - Define interfaces to accept arguments - Return concrete types, not interfaces
8 lines
91 B
Go
8 lines
91 B
Go
package extract
|
|
|
|
type Extractor struct{}
|
|
|
|
func New() *Extractor {
|
|
return new(Extractor)
|
|
}
|