File: O18f.pm

package info (click to toggle)
libweb-machine-perl 0.17-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 940 kB
  • sloc: perl: 5,481; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 189 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
package O18f;
use strict;
use warnings;

use parent 'Web::Machine::Resource';

sub content_types_provided { [ { 'text/plain' => 'handle_plain_text' }] }

sub handle_plain_text { \500 }

1;