Initial draft of auth modules
[catagits/Catalyst-Plugin-Authentication.git] / lib / Catalyst / Plugin / Authentication / Store.pm
CommitLineData
06675d2e 1#!/usr/bin/perl
2
3package Catalyst::Plugin::Authentication::Store;
4
5use strict;
6use warnings;
7
8sub get_user { die "virtual" }
9
10sub user_supports { die "virtual" }
11
12__PACKAGE__;
13
14__END__
15
16=pod
17
18=head1 NAME
19
20Catalyst::Plugin::Authentication::Store -
21
22=head1 SYNOPSIS
23
24 use Catalyst::Plugin::Authentication::Store;
25
26=head1 DESCRIPTION
27
28=cut
29
30