Add player: Vibix

This commit is contained in:
2025-08-11 18:36:02 +00:00
parent 9db1ee3f50
commit 206aa770b6
9 changed files with 137 additions and 129 deletions

View File

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