Files
gluetun/internal/provider/cyberghost/provider.go
2025-11-04 14:43:02 +00:00

30 lines
657 B
Go

package cyberghost
import (
"math/rand"
"github.com/qdm12/gluetun/internal/constants/providers"
"github.com/qdm12/gluetun/internal/provider/common"
"github.com/qdm12/gluetun/internal/provider/cyberghost/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(parallelResolver, updaterWarner),
}
}
func (p *Provider) Name() string {
return providers.Cyberghost
}