chore(wevpn): removed since it is now decomissioned

This commit is contained in:
Quentin McGaw
2025-12-23 02:12:02 +00:00
parent e627504fb5
commit 92237658c3
18 changed files with 4 additions and 1041 deletions
-30
View File
@@ -1,30 +0,0 @@
package wevpn
import (
"math/rand"
"github.com/qdm12/gluetun/internal/constants/providers"
"github.com/qdm12/gluetun/internal/provider/common"
"github.com/qdm12/gluetun/internal/provider/wevpn/updater"
)
type Provider struct {
storage common.Storage
randSource rand.Source
common.Fetcher
}
func New(storage common.Storage, randSource rand.Source,
updaterWarner common.Warner,
parallelResolver common.ParallelResolver,
) *Provider {
return &Provider{
storage: storage,
randSource: randSource,
Fetcher: updater.New(updaterWarner, parallelResolver),
}
}
func (p *Provider) Name() string {
return providers.Wevpn
}