mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-06 20:10:11 +02:00
16 lines
169 B
Go
16 lines
169 B
Go
package updater
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Updater struct {
|
|
client *http.Client
|
|
}
|
|
|
|
func New(client *http.Client) *Updater {
|
|
return &Updater{
|
|
client: client,
|
|
}
|
|
}
|