/**
  * Define the routes for the application.
  *
  * @param  \CupOfTea\TwoStream\Routing\WsRouter  $router
  * @return void
  */
 public function map(WsRouter $router)
 {
     $router->group(['namespace' => $this->namespace], function ($router) {
         require app_path('Ws/routes.php');
     });
 }