mirror of
https://framagit.org/fiat-tux/hat-softwares/lutim.git
synced 2026-03-28 17:42:54 +01: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');
|