package main import ( "fmt" "log" "os" ) func main() { fmt.Println("Read env from Gitea") for _, v := range os.Environ() { fmt.Println(v) } }