mirror of
https://github.com/qdm12/gluetun.git
synced 2026-08-05 03:43:24 +02:00
15 lines
266 B
Go
15 lines
266 B
Go
package updater
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/qdm12/gluetun/internal/models"
|
|
)
|
|
|
|
func (u *Updater) FetchServers(_ context.Context, _ int) (
|
|
servers []models.Server, err error,
|
|
) {
|
|
return nil, errors.New("hidemyass servers are no longer available")
|
|
}
|