#!/usr/bin/perl
#line 3
use 5.010;
use strict;
use warnings;
use App::read_httpd_conf;
use Pod::Usage;

pod2usage if not @ARGV;
exit App::read_httpd_conf->main(@ARGV);

1;

__END__

=head1 NAME 

 read-httpd-conf

=head1 SYNOPSIS

 read-httpd-conf file

=head1 DESCRIPTION

This small tool reads the apache config file and obeyes all the includes. You may
then parse the output.

=head1 OPTIONS

None so far.

=cut
