File: dispatch.cgi

package info (click to toggle)
libnet-oauth-perl 0.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: perl: 1,484; makefile: 8
file content (16 lines) | stat: -rwxr-xr-x 327 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl
use strict;
use warnings;
use lib qw(
	.
	Net-OAuth/lib
	/home/kg23/local/share/perl/5.10
	/home/kg23/local/share/perl/5.10.0
	/home/kg23/local/lib/perl/5.10
	/home/kg23/local/lib/perl/5.10.0
	);

use Plack::Util;
use Plack::Loader;
my $app = Plack::Util::load_psgi("app.psgi");
Plack::Loader->auto->run($app);