MyRedland/lib/MyRedland/Lusers.pm

17 lines
198 B
Perl
Raw Normal View History

2022-12-06 11:02:41 +01:00
package MyRedland::Lusers;
use v5.34.1;
use strict;
use warnings;
use Moo;
use Types::Standard qw/InstanceOf/;
has app => (
is => 'rw',
isa => InstanceOf['Mojolicious'],
required => 1,
);
1;