This repository has been archived on 2025-04-27. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
PoorBooru/script/poorbooru-api-v0
2023-03-04 21:58:18 +00:00

10 lines
223 B
Perl
Executable file

#!/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::API::V0");