2023-03-04 22:58:18 +01:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
use v5.36;
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
|
|
|
use Mojo::File qw(curfile);
|
|
|
|
use lib curfile->dirname->sibling("lib")->to_string;
|
|
|
|
use Mojolicious::Commands;
|
|
|
|
|
2023-03-05 21:03:20 +01:00
|
|
|
Mojolicious::Commands->start_app("PoorBooru::Backend");
|