mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-04-30 10:34:47 +02:00
12 lines
230 B
Perl
Executable File
12 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');
|