some changes
All checks were successful
Build Slideshow App / build (amd64, .exe, windows) (push) Successful in 2m0s
Build Slideshow App / build (amd64, , linux) (push) Successful in 2m20s
Build Slideshow App / build (arm, 7, , linux) (push) Successful in 1m57s
Build Slideshow App / build (arm64, , linux) (push) Successful in 1m58s
All checks were successful
Build Slideshow App / build (amd64, .exe, windows) (push) Successful in 2m0s
Build Slideshow App / build (amd64, , linux) (push) Successful in 2m20s
Build Slideshow App / build (arm, 7, , linux) (push) Successful in 1m57s
Build Slideshow App / build (arm64, , linux) (push) Successful in 1m58s
This commit is contained in:
6
env/enviroment.go
vendored
6
env/enviroment.go
vendored
@@ -26,7 +26,11 @@ func Load(path string) error {
|
||||
}
|
||||
|
||||
func (key EnvKey) GetValue() string {
|
||||
return os.Getenv(string(key))
|
||||
port := os.Getenv(string(key))
|
||||
if port == "" {
|
||||
port = "8080"
|
||||
}
|
||||
return port
|
||||
}
|
||||
|
||||
func (key EnvKey) SetValue(value string) {
|
||||
|
||||
@@ -35,19 +35,10 @@ func getActiveIP() string {
|
||||
|
||||
func InfoHandler(w http.ResponseWriter, r *http.Request) {
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
port := env.Port.GetValue()
|
||||
if port == "" {
|
||||
port = "8080"
|
||||
}
|
||||
|
||||
speed := env.IntervalDefault.GetValue()
|
||||
if speed == "" {
|
||||
speed = "10"
|
||||
}
|
||||
|
||||
data := map[string]string{
|
||||
"ip": GetLocalIP(),
|
||||
"port": port,
|
||||
"port": env.Port.GetValue(),
|
||||
"speed": GetInterval(),
|
||||
}
|
||||
err := json.NewEncoder(w).Encode(data)
|
||||
|
||||
Reference in New Issue
Block a user