mirror of
https://github.com/qdm12/gluetun.git
synced 2025-12-11 13:56:50 -06:00
- 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)
|
|
}
|