This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Segfautils/otherthings/checkenv.go

21 lines
506 B
Go
Raw Normal View History

// Please ignore this :))))))) :(
package otherthings
import (
"os"
"log"
)
var unused string
var ok1 bool
func CheckEnv() {
unused, ok1 = os.LookupEnv("SEGFAUTILITIES_PORT")
if ok1 {
log.Println("[Segfautilities] Environment variable SEGFAUTILITIES_PORT is set as " + unused)
} else {
log.Fatal("[Segfautilities] Environment variable SEGFAUTILITIES_PORT is not set! Please set it to a number, for example 6893")
}
log.Println("[Segfautilities] ✅ Passed the Environment Variables check")
}