projects
/
kivitendo-erp.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
warnings
[kivitendo-erp.git]
/
admin.pl
1
#!/usr/bin/perl
2
3
use strict;
4
5
use SL::Dispatcher;
6
7
our $dispatcher = SL::Dispatcher->new('CGI');
8
$dispatcher->pre_startup;
9
$dispatcher->handle_request;
10
11
1;