package HTTP::Engine::Interface::CGI; use Moose; with 'HTTP::Engine::Role::Interface'; sub run { my ($self) = @_; $self->handle_request( request_args => { _connection => { env => \%ENV, input_handle => \*STDIN, output_handle => \*STDOUT, }, }, ); } 1; __END__ =for stopwords CGI Naoki Nyarla Okamura yaml =head1 NAME HTTP::Engine::Interface::CGI - CGI interface for HTTP::Engine =head1 AUTHOR Naoki Okamura (Nyarla) Ethotep@nyarla.netE Tokuhiro Matsuno =head1 LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut