This commit is contained in:
garnier-quentin 2015-12-23 14:42:57 +01:00
commit 2c96fe3550
1 changed files with 27 additions and 20 deletions

View File

@ -297,7 +297,14 @@ sub request {
$self->{output}->exit();
}
$self->{headers} = $response->headers;
return $response->content;
}
sub get_header {
my ($self, %options) = @_;
return $self->{headers};
}
1;