a15f9cb3a013f14b1b0e6a2e86b2b7c7ac119700
[scpubgit/DX.git] / lib / DX / Role.pm
1 package DX::Role;
2
3 use Import::Into;
4
5 sub import {
6   strictures->import::into({ level => 1, version => 2 });
7   DX::Types->import::into(1, ':types', ':assert');
8   DX::Utils->import::into(1, '*trace');
9   Types::Standard->import::into(1, 'Maybe');
10   Try::Tiny->import::into(1);
11   Moo::Role->import::into(1);
12 }
13
14 1;