From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use strict;
use Moo;
use Types::Standard qw/Any/;
has db =>
(
is => 'rw',
isa => Any,
);
our $VERSION = '0.93';
# --------------------------------------------------
sub log
{
my($self, $level, $s) = @_;
$self -> db -> log($level, $s);
} # End of log.
# --------------------------------------------------
1;