mirror of
https://github.com/qdm12/gluetun.git
synced 2026-05-14 20:40:13 +02:00
e806fe02db
- SlickVPN location website is now total garbage which cannot be parsed
13 lines
305 B
Go
13 lines
305 B
Go
package common
|
|
|
|
import (
|
|
"github.com/qdm12/gluetun/internal/configuration/settings"
|
|
"github.com/qdm12/gluetun/internal/models"
|
|
)
|
|
|
|
type Storage interface {
|
|
FilterServers(provider string, selection settings.ServerSelection) (
|
|
servers []models.Server, err error)
|
|
HardcodedServers() models.AllServers
|
|
}
|