1
0
Fork 0
master
Ambrose Chua 2018-02-04 16:11:21 +08:00
parent ba81463ebe
commit a9925fbb3c
Signed by: ambrose
GPG Key ID: B34FBE029276BA5D
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ import (
) )
func handler(w http.ResponseWriter, r *http.Request) { func handler(w http.ResponseWriter, r *http.Request) {
w.Header().Add("Content-Type", "text/html; charset=utf-8") w.Header().Add("Content-Type", "text/html; charset=utf-8")
fmt.Fprintf(w, "%s", os.Getenv("TEXT")) fmt.Fprintf(w, "%s", os.Getenv("TEXT"))
} }