summaryrefslogtreecommitdiff
path: root/LedgerSMB/RESTXML/Document/SalesOrder.pm
blob: acb4d5aa62502bb09f82747deceb2b4efd2eb4ba (plain)
  1. package LedgerSMB::RESTXML::Document::SalesOrder;
  2. use strict;
  3. use warnings;
  4. use base qw(LedgerSMB::RESTXML::Document::Base);
  5. sub handle_get {
  6. my ($self, $args) = @_;
  7. print "Content-type: text/html\n\n";
  8. print "It still works";
  9. }
  10. 1;