aboutsummaryrefslogtreecommitdiff
path: root/lib/Sietima/Role/WithMailStore.pm
blob: 9d3a8bddbef58830ef7c8e88f3d932bb59f744c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Sietima::Role::WithMailStore; 
use Moo::Role;
use Sietima::Policy;
use Sietima::Types qw(MailStore);
use namespace::clean;
 
has mail_store => (
    is => 'ro',
    isa => MailStore,
    required => 1,
);
 
1;