The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl
# ABSTRACT: Zabbix Reporter CGI Endpoint
# PODNAME: zreporter-web.pl
use strict;
use warnings;

use Plack::Loader;

my $app = Plack::Util::load_psgi('zreporter-web.psgi');
Plack::Loader::->auto->run($app);

__END__

=pod

=encoding utf-8

=head1 NAME

zreporter-web.pl - Zabbix Reporter CGI Endpoint

=head1 NAME

zreporter-web - Zabbix::Reporter web endpoint (CGI)

=head1 AUTHOR

Dominik Schulz <dominik.schulz@gauner.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Dominik Schulz.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut