Files
gluetun/internal/provider/ivpn/provider.go
Quentin McGaw (desktop) 8b8bab5c58 Feature: IVPN support
2021-05-31 00:11:16 +00:00

20 lines
301 B
Go

package ivpn
import (
"math/rand"
"github.com/qdm12/gluetun/internal/models"
)
type Ivpn struct {
servers []models.IvpnServer
randSource rand.Source
}
func New(servers []models.IvpnServer, randSource rand.Source) *Ivpn {
return &Ivpn{
servers: servers,
randSource: randSource,
}
}