-
Guillaume ROUSSE authored
use relative location and environment variable to find other components at runtime, avoiding substitution at install time
Guillaume ROUSSE authoreduse relative location and environment variable to find other components at runtime, avoiding substitution at install time
app 240 B
#!/usr/bin/perl
use strict;
use warnings;
use Mojo::File qw(curfile);
use lib curfile()->dirname()->sibling('lib')->to_string;
use AccountManager::App;
my $app = AccountManager::App->new(
moniker => 'AccessCheck',
);
$app->start();