Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use Mojolicious::Lite -signatures;
    ...
        $c->send("Connected... RUN|STOP");
    };
    app->start
    
  2. or download this
    #!/usr/bin/env perl
    use Mojo::Base -strict, -signatures;
    ...
    });
    
    Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
    
  3. or download this
    #!/usr/bin/env perl
    use Mojolicious::Lite -signatures;
    ...
        $c->send("Connected... RUN|STOP");
    };
    app->start