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

View File

@ -1,4 +1,4 @@
package PoorBooru;
package PoorBooru::Backend;
use v5.36;
use strict;
use warnings;
@ -8,7 +8,7 @@ use SeaweedFS::Client;
sub startup ($self)
{
$self->moniker("poorbooru");
$self->moniker("poorbooru-backend");
my $config = $self->plugin("Config");
$self->secrets($config->{secrets});

View File

@ -1,4 +1,4 @@
package PoorBooru::Controller::Gallery;
package PoorBooru::Backend::Controller::Gallery;
use v5.36;
use strict;
use warnings;

View File

@ -7,4 +7,4 @@ use Mojo::File qw(curfile);
use lib curfile->dirname->sibling("lib")->to_string;
use Mojolicious::Commands;
Mojolicious::Commands->start_app("PoorBooru");
Mojolicious::Commands->start_app("PoorBooru::Backend");