Guest User

Untitled

a guest
May 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. sub {
  2. my $env = shift; # request
  3. # ...
  4. return [ # response
  5. 200, # status code
  6. [ "Content-Type" => "text/plain" ], # headers
  7. ["Hello world"] # body
  8. ];
  9. }
Add Comment
Please, Sign In to add comment