(ctx context.Context)
| 571 | } |
| 572 | |
| 573 | func (ws *WshServer) ConnStatusCommand(ctx context.Context) ([]wshrpc.ConnStatus, error) { |
| 574 | rtn := conncontroller.GetAllConnStatus() |
| 575 | return rtn, nil |
| 576 | } |
| 577 | |
| 578 | func (ws *WshServer) WslStatusCommand(ctx context.Context) ([]wshrpc.ConnStatus, error) { |
| 579 | rtn := wslconn.GetAllConnStatus() |
nothing calls this directly
no test coverage detected