UserStore and User classes
[scpubgit/App-EzPz.git] / bin / ezpz-admin-repl
CommitLineData
5b26866e 1#!/usr/bin/env perl
2
3use File::Which;
4use App::EzPz::UserStore;
5use strictures 1;
6
7die "Usage: ezpz-admin-repl ezmlm-bindir htpasswd-file"
8 unless @ARGV == 2;
9
10{
11 package Eval::WithLexicals::Scratchpad;
12
13 use vars qw($users);
14
15 $users = App::EzPz::UserStore->new(
16 ezmlm_bindir => $ARGV[0],
17 htpasswd_file => $ARGV[1],
18 );
19}
20
21do +which('tinyrepl');
22
23exit 0;