This commit is contained in:
2025-08-14 15:19:20 +00:00
parent df401b470a
commit 17ae8dd2eb
2 changed files with 0 additions and 5 deletions

View File

@@ -16,7 +16,6 @@ GMAIL_APP_PASSWORD=your_gmail_app_password
# Players
LUMEX_URL=
ALLOHA_TOKEN=your_alloha_token
VIBIX_TOKEN
# Torrents (RedAPI)
REDAPI_BASE_URL=http://redapi.cfhttp.top

View File

@@ -23,8 +23,6 @@ type Config struct {
GoogleClientSecret string
GoogleRedirectURL string
FrontendURL string
VibixHost string
VibixToken string
}
func New() *Config {
@@ -48,8 +46,6 @@ func New() *Config {
GoogleClientSecret: getEnv(EnvGoogleClientSecret, ""),
GoogleRedirectURL: getEnv(EnvGoogleRedirectURL, ""),
FrontendURL: getEnv(EnvFrontendURL, ""),
VibixHost: getEnv(EnvVibixHost, DefaultVibixHost),
VibixToken: getEnv(EnvVibixToken, ""),
}
}