Perl x Open Food Facts Hackathon: Paris, France - May 24-25 Learn more

use Moose;
extends 'Catalyst::Model';
sub BUILD {
Class::MOP::Class->create(
'TestApp::Model::Generated' => (
methods => {
foo => sub { 'foo' }
}
)
);
}
sub expand_modules {
return ('TestApp::Model::Generated');
}
__PACKAGE__->meta->make_immutable;
no Moose;
1;