/usr/local/CPAN/HTML-Shakan/HTML/Shakan/Role/Model.pm


package HTML::Shakan::Role::Model;
use Any::Moose '::Role';

requires 'create', 'update', 'fill';

has 'form' => (
    is  => 'rw',
    isa => 'HTML::Shakan',
);

1;