projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
CsvReport: single-dbh
[kivitendo-erp.git]
/
dispatcher.fpl
1
#!/usr/bin/perl
2
3
use strict;
4
5
use SL::Dispatcher;
6
use SL::FCGIFixes;
7
use SL::LXDebug;
8
9
our $dispatcher = SL::Dispatcher->new('FastCGI');
10
$dispatcher->pre_startup_setup;
11
SL::FCGIFixes::apply_fixes();
12
$dispatcher->pre_startup_checks;
13
$dispatcher->handle_all_requests;
14
15
1;