feat(providers): add AirVPN support (#1145)
This commit is contained in:
15
internal/provider/airvpn/updater/updater.go
Normal file
15
internal/provider/airvpn/updater/updater.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package updater
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type Updater struct {
|
||||
client *http.Client
|
||||
}
|
||||
|
||||
func New(client *http.Client) *Updater {
|
||||
return &Updater{
|
||||
client: client,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user