mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
11 lines
230 B
Perl
Executable file
11 lines
230 B
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use FindBin;
|
|
BEGIN { unshift @INC, "$FindBin::Bin/../lib" }
|
|
|
|
# Start command line interface for application
|
|
require Mojolicious::Commands;
|
|
Mojolicious::Commands->start_app('Lutim');
|