Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use strict;
sub new {
my ($class, $stuff) = @_;
return bless { r => $stuff }, $class;
}
sub get {
my ($self, $header) = @_;
return $self->{r}->header($header);
}
1;