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