package WebGUI::Request; =head2 DESCRIPTION The WebGUI server response object. See L =cut use parent qw(Plack::Request); use WebGUI::Response; =head1 METHODS =head2 new_response () Creates a new L object. N.B. A L object is automatically created when L is instantiated, so in most cases you will not need to call this method. See L =cut sub new_response { my $self = shift; WebGUI::Response->new(@_); } 1;