handlePing returns a simple "pong" string
(r *Request)
| 117 | |
| 118 | //handlePing returns a simple "pong" string |
| 119 | func handlePing(r *Request) (interface{}, error) { |
| 120 | return "pong", nil |
| 121 | } |
| 122 | |
| 123 | // handlePrint prints a message to stdout. |
| 124 | func handlePrint(r *Request) (interface{}, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected