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