Skip to content
Snippets Groups Projects
account-manager.cgi.in 458 B
Newer Older
#!/usr/bin/perl

use strict;
use warnings;
use utf8;
use lib qw(@modulesdir@);
use IdPAccountManager::Configuration;
use IdPAccountManager::WebRequest;
Guillaume ROUSSE's avatar
Guillaume ROUSSE committed
my $configuration = IdPAccountManager::Configuration->new(
    file => '@sysconfdir@/manager.conf'
Guillaume ROUSSE's avatar
Guillaume ROUSSE committed
);

my $request = IdPAccountManager::WebRequest->new(
    configuration => $configuration
$request->run();

__END__

=head1 NAME

account-manager-web.pl - Web interface for the Test IdP Account Manager