| line | stmt | bran | cond | sub | pod | time | code | 
| 1 |  |  |  |  |  |  | package App::GitGot::Types; | 
| 2 |  |  |  |  |  |  | our $AUTHORITY = 'cpan:GENEHACK'; | 
| 3 |  |  |  |  |  |  | $App::GitGot::Types::VERSION = '1.336'; | 
| 4 |  |  |  |  |  |  | # ABSTRACT: GitGot type library | 
| 5 | 16 |  |  | 16 |  | 228 | use 5.014;    ## strict, unicode_strings | 
|  | 16 |  |  |  |  | 47 |  | 
| 6 | 16 |  |  | 16 |  | 73 | use warnings; | 
|  | 16 |  |  |  |  | 26 |  | 
|  | 16 |  |  |  |  | 617 |  | 
| 7 |  |  |  |  |  |  |  | 
| 8 |  |  |  |  |  |  | use Type::Library | 
| 9 | 16 |  |  |  |  | 92 | -base , | 
| 10 |  |  |  |  |  |  | -declare => qw/ | 
| 11 |  |  |  |  |  |  | GitWrapper | 
| 12 |  |  |  |  |  |  | GotOutputter | 
| 13 |  |  |  |  |  |  | GotRepo | 
| 14 | 16 |  |  | 16 |  | 293 | /; | 
|  | 16 |  |  |  |  | 28 |  | 
| 15 | 16 |  |  | 16 |  | 14494 | use Type::Utils -all; | 
|  | 16 |  |  |  |  | 61229 |  | 
|  | 16 |  |  |  |  | 123 |  | 
| 16 | 16 |  |  | 16 |  | 43162 | use Types::Standard -types; | 
|  | 16 |  |  |  |  | 29 |  | 
|  | 16 |  |  |  |  | 59 |  | 
| 17 |  |  |  |  |  |  |  | 
| 18 |  |  |  |  |  |  | class_type GitWrapper   , { class => "Git::Wrapper" }; | 
| 19 |  |  |  |  |  |  | class_type GotOutputter , { class => "App::GitGot::Outputter" }; | 
| 20 |  |  |  |  |  |  | class_type GotRepo      , { class => "App::GitGot::Repo" }; | 
| 21 |  |  |  |  |  |  |  | 
| 22 |  |  |  |  |  |  | 1; | 
| 23 |  |  |  |  |  |  |  | 
| 24 |  |  |  |  |  |  | __END__ |