| 123456789101112131415161718192021222324252627282930 |
- package main
- import (
- "fmt"
- "log"
- "net/http"
- )
- func handler(w http.ResponseWriter, r *http.Request) {
- fmt.Println(r.URL.RawQuery)
- fmt.Fprintf(w, `
- ## .
- ## ## ## ==
- ## ## ## ## ## ===
- /"""""""""""""""""\___/ ===
- { / ===-
- \______ O __/
- \ \ __/
- \____\_______/
-
- Hello from Docker!
- `)
- }
- func main() {
- http.HandleFunc("/", handler)
- log.Fatal(http.ListenAndServe(":80", nil))
- }
|