MCPcopy Index your code
hub / github.com/dockersamples/single-dev-env / handler

Function handler

main.go:9–25  ·  view source on GitHub ↗
(w http.ResponseWriter, r *http.Request)

Source from the content-addressed store, hash-verified

7)
8
9func handler(w http.ResponseWriter, r *http.Request) {
10 fmt.Println(r.URL.RawQuery)
11 fmt.Fprintf(w, `
12 ## .
13 ## ## ## ==
14 ## ## ## ## ## ===
15/"""""""""""""""""\___/ ===
16{ / ===-
17\______ O __/
18 \ \ __/
19 \____\_______/
20
21
22Hello from Docker!
23
24`)
25}
26
27func main() {
28 http.HandleFunc("/", handler)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected