045c8a2310ef6c68d7d66463068f8c179d7a8e90
[scpubgit/DX.git] / lib / DX / Role.pm
1 package DX::Role;
2
3 use Import::Into;
4
5 sub import {
6   strictures->import::into(1);
7   DX::Types->import::into(1, ':types', ':assert');
8   Moo::Role->import::into(1);
9 }
10
11 1;