Rename PoorBooru => PoorBooru::Backend

This commit is contained in:
Lucas 2023-03-05 20:03:20 +00:00
parent db26c5fcc9
commit 70191db656
4 changed files with 4 additions and 4 deletions

10
script/poorbooru-backend Executable file
View file

@ -0,0 +1,10 @@
#!/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;
Mojolicious::Commands->start_app("PoorBooru::Backend");