|
@@ -19,6 +19,7 @@ import (
|
|
// func ClientIPs(r *http.Request) []string
|
|
// func ClientIPs(r *http.Request) []string
|
|
// func HandleAppStatus() http.Handler
|
|
// func HandleAppStatus() http.Handler
|
|
// func HandleFile(data, contentType string) http.Handler
|
|
// func HandleFile(data, contentType string) http.Handler
|
|
|
|
+// func HandleImagePng(data string) http.Handler
|
|
// func MinifyHtmlCode(str string) string
|
|
// func MinifyHtmlCode(str string) string
|
|
// func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error)
|
|
// func RespondAsBadRequest(w http.ResponseWriter, r *http.Request, err error)
|
|
// func RespondAsMethodNotAllowed(w http.ResponseWriter, r *http.Request)
|
|
// func RespondAsMethodNotAllowed(w http.ResponseWriter, r *http.Request)
|
|
@@ -82,6 +83,10 @@ func HandleFile(data, contentType string) http.Handler {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func HandleImagePng(data string) http.Handler {
|
|
|
|
+ return HandleFile(data, "image/png")
|
|
|
|
+}
|
|
|
|
+
|
|
func MinifyHtmlCode(str string) string {
|
|
func MinifyHtmlCode(str string) string {
|
|
str = mHtml.ReplaceAllString(str, "><")
|
|
str = mHtml.ReplaceAllString(str, "><")
|
|
str = mHtmlLeft.ReplaceAllString(str, ">")
|
|
str = mHtmlLeft.ReplaceAllString(str, ">")
|