diff --git a/main.go b/main.go index 3b7b987..6ad18b5 100644 --- a/main.go +++ b/main.go @@ -3,12 +3,15 @@ package main import ( "fmt" jsoniter "github.com/json-iterator/go" + "os" ) func main() { m := map[string]string{ - "hello": "world12111", + "hello": "world", } + baseURL := os.Getenv("BASE_URL") + fmt.Println("BASE_URL:", baseURL) marshal, _ := jsoniter.Marshal(m) fmt.Println(string(marshal)) }