package RequestForm::Base;
# provides Moo, Local::MooX::Types & LIMS::Local::Debug::p to callers
use strict;
use warnings;
use Import::Into;
sub import {
my $target = caller;
Moo->import::into($target);
Modern::Perl->import::into($target);
LIMS::Local::Debug->import::into($target);
Local::MooX::Types->import::into($target, qw/String HashReference Object/);
}
1;