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