feat: add basic skeleton app

This commit is contained in:
2025-12-17 14:15:27 +01:00
parent 5596014f8d
commit f84c9dcbb4
2 changed files with 31 additions and 0 deletions

12
bin/urupam Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env perl
use strict;
use warnings;
use FindBin;
use lib "$FindBin::Bin/../lib";
use Urupam::App;
my $app = Urupam::App->new();
$app->start();