mirror of
https://github.com/YunoHost-Apps/lstu_ynh.git
synced 2024-09-03 19:36:12 +02:00
13 lines
291 B
Text
13 lines
291 B
Text
|
#!/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');
|