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