File: responses.pl

package info (click to toggle)
libmojolicious-perl 9.31%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,260 kB
  • sloc: perl: 10,139; makefile: 31; javascript: 1
file content (30 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#
# Application demonstrating the various HTTP response variants for debugging
#
use Mojolicious::Lite -signatures;

get '/res1' => sub ($c) {
  $c->render(data => 'Hello World!');
};

get '/res2' => sub ($c) {
  $c->write('Hello ');
  $c->write('World!');
  $c->write('');
};

get '/res3' => sub ($c) {
  $c->write_chunk('Hello ');
  $c->write_chunk('World!');
  $c->write_chunk('');
};

get '/res4' => sub ($c) {
  $c->render(data => '', status => 204);
};

get '/res5' => sub {
  die 'Hello World!';
};

app->start;