minor wording improvements
[catagits/Web-Simple.git] / lib / Web / Dispatch / ToApp.pm
CommitLineData
4ed4fb42 1package Web::Dispatch::ToApp;
2
3use Moo::Role;
4
5requires 'call';
6
7sub to_app {
8 my ($self) = @_;
9 sub { $self->call(@_) }
10}
11
121;