Initial commit

This commit is contained in:
2026-07-30 17:26:40 -07:00
commit 914c0374e4
11 changed files with 203 additions and 0 deletions

11
mojo_app/script/mojo_app Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env perl
use strict;
use warnings;
use Mojo::File qw(curfile);
use lib curfile->dirname->sibling('lib')->to_string;
use Mojolicious::Commands;
# Start command line interface for application
Mojolicious::Commands->start_app('MojoApp');