provide interface definition role and update translator to check for it
[catagits/catbook-code.git] / lib / LolCatalyst / Lite / Interface / TranslationDriver.pm
1 package LolCatalyst::Lite::Interface::TranslationDriver;
2
3 use Moose::Role;
4 use namespace::clean -except => 'meta';
5
6 requires 'translate';
7
8 1;