sidoxy/env.go

13 lines
250 B
Go
Raw Permalink Normal View History

package main
import (
"os"
)
func getEnvironmentVariables() (proxyHostURL, proxyServerURL, jwtKey string) {
proxyHostURL = os.Getenv("PROXY_HOST_URL")
proxyServerURL = os.Getenv("PROXY_SERVER_URL")
jwtKey = os.Getenv("PROXY_JWT_KEY")
return
}