(ctx context.Context, data string)
| 73 | } |
| 74 | |
| 75 | func (ws *WshServer) TestCommand(ctx context.Context, data string) error { |
| 76 | defer func() { |
| 77 | panichandler.PanicHandler("TestCommand", recover()) |
| 78 | }() |
| 79 | rpcSource := wshutil.GetRpcSourceFromContext(ctx) |
| 80 | log.Printf("TEST src:%s | %s\n", rpcSource, data) |
| 81 | return nil |
| 82 | } |
| 83 | |
| 84 | func (ws *WshServer) TestMultiArgCommand(ctx context.Context, arg1 string, arg2 int, arg3 bool) (string, error) { |
| 85 | defer func() { |
nothing calls this directly
no test coverage detected