sketch some actual shell internal modules
[scpubgit/DX.git] / lib / DX / Class.pm
CommitLineData
9d759b64 1package DX::Class;
2
3use Import::Into;
4
5sub import {
6 strictures->import::into(1); # should pass version
3e465d5d 7 DX::Types->import::into(1, ':types', ':assert');
9d759b64 8 Moo->import::into(1);
9 # This would not be safe with method modifiers, but since the role
10 # provides only a single method it works out fine.
11 caller()->can('with')->('DX::Role::But');
12}
13
141;