(s *router.Context)
| 34 | } |
| 35 | |
| 36 | func (r *Router) cmdPING(s *router.Context) error { |
| 37 | s.Reply = pongReply |
| 38 | return router.WriteSimpleString(s.Writer, pongReply) |
| 39 | } |
| 40 | |
| 41 | func (r *Router) cmdCMDEXEC(s *router.Context) error { |
| 42 | var err error |
nothing calls this directly
no test coverage detected