/lib/HTML/FormHandler/Base.pm
http://github.com/gshank/html-formhandler · Perl · 15 lines · 8 code · 4 blank · 3 comment · 0 complexity · ad4840b13462ba73958051f465e97d3c MD5 · raw file
- package HTML::FormHandler::Base;
- # ABSTRACT: stub
- use Moose;
- with 'HTML::FormHandler::Widget::Form::Simple';
- # here to make it possible to combine the Blocks role with a role
- # setting the render_list without an 'excludes'
- sub has_render_list { }
- sub build_render_list {[]}
- __PACKAGE__->meta->make_immutable;
- use namespace::autoclean;
- 1;