mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-09 20:29:23 +02:00
22 lines
347 B
Go
22 lines
347 B
Go
package perfectprivacy
|
|
|
|
import (
|
|
"github.com/qdm12/gluetun/internal/provider/common"
|
|
)
|
|
|
|
type Updater struct {
|
|
unzipper common.Unzipper
|
|
warner common.Warner
|
|
}
|
|
|
|
func New(unzipper common.Unzipper, warner common.Warner) *Updater {
|
|
return &Updater{
|
|
unzipper: unzipper,
|
|
warner: warner,
|
|
}
|
|
}
|
|
|
|
func (u *Updater) Version() uint16 {
|
|
return 1
|
|
}
|