This commit is contained in:
Quentin McGaw
2026-05-12 04:43:27 +00:00
parent 5b01324d5f
commit 71c4fcda52
52 changed files with 304371 additions and 303986 deletions
-3
View File
@@ -3,7 +3,6 @@ package updater
import (
"context"
"github.com/qdm12/gluetun/internal/configuration/settings"
"github.com/qdm12/gluetun/internal/models"
"github.com/qdm12/gluetun/internal/provider"
)
@@ -16,8 +15,6 @@ type Storage interface {
SetServers(provider string, servers []models.Server) (err error)
GetServersCount(provider string) (count int)
ServersAreEqual(provider string, servers []models.Server) (equal bool)
// Extra methods to match the provider.New storage interface
FilterServers(provider string, selection settings.ServerSelection) (filtered []models.Server, err error)
}
type Unzipper interface {