()
| 170 | } |
| 171 | |
| 172 | func ExampleDebugHandler_KV() { |
| 173 | mux := http.NewServeMux() |
| 174 | dbg := Debugger(mux) |
| 175 | // Adds two list items to /debug/, showing that the condition is |
| 176 | // red and there are 42 donuts. |
| 177 | dbg.KV("Condition", "red") |
| 178 | dbg.KV("Donuts", 42) |
| 179 | } |
| 180 | |
| 181 | func ExampleDebugHandler_KVFunc() { |
| 182 | mux := http.NewServeMux() |