Initial import

This commit is contained in:
Lucas Gabriel Vuotto 2025-04-26 09:41:50 +00:00
commit dd492db92e
37 changed files with 1953 additions and 0 deletions

12
bin/mk-schema.pl Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env perl
use v5.40;
use DBIx::Class::Schema::Loader qw(make_schema_at);
my $dsn = (require "./pooru-api-v0.conf")->{dsn};
my %opts = (
dump_directory => "lib",
exclude => "dbix_migration",
);
make_schema_at("Pooru::Schema", \%opts, [$dsn]);