|
@@ -20,6 +20,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 HandleImageJpeg(data string) http.Handler
|
|
// func HandleImagePng(data string) http.Handler
|
|
// func HandleImagePng(data string) http.Handler
|
|
// func HandleTextCss(data string) http.Handler
|
|
// func HandleTextCss(data string) http.Handler
|
|
// func HandleTextJavaScript(data string) http.Handler
|
|
// func HandleTextJavaScript(data string) http.Handler
|
|
@@ -114,6 +115,10 @@ func HandleFile(data, contentType string) http.Handler {
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+func HandleImageJpeg(data string) http.Handler {
|
|
|
|
+ return HandleFile(data, "image/jpeg")
|
|
|
|
+}
|
|
|
|
+
|
|
func HandleImagePng(data string) http.Handler {
|
|
func HandleImagePng(data string) http.Handler {
|
|
return HandleFile(data, "image/png")
|
|
return HandleFile(data, "image/png")
|
|
}
|
|
}
|