line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package HTTP::Engine; |
2
|
36
|
|
|
36
|
|
619427
|
use 5.00800; |
|
36
|
|
|
|
|
85
|
|
3
|
36
|
|
|
36
|
|
3463
|
use Any::Moose; |
|
36
|
|
|
|
|
191524
|
|
|
36
|
|
|
|
|
148
|
|
4
|
|
|
|
|
|
|
our $VERSION = '0.1.4_04'; |
5
|
36
|
|
|
36
|
|
24547
|
use HTTP::Engine::Request; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
use HTTP::Engine::Response; |
7
|
|
|
|
|
|
|
use HTTP::Engine::Types::Core qw( Interface ); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
has 'interface' => ( |
10
|
|
|
|
|
|
|
is => 'ro', |
11
|
|
|
|
|
|
|
isa => Interface, |
12
|
|
|
|
|
|
|
coerce => 1, |
13
|
|
|
|
|
|
|
handles => [ qw(run) ], |
14
|
|
|
|
|
|
|
); |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
no Any::Moose; |
17
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable(inline_destructor => 1); |
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
__END__ |