File: Auth.pm

package info (click to toggle)
libmango-perl 1.30-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 448 kB
  • sloc: perl: 1,513; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package Mango::Auth;
use Mojo::Base -base;

has 'mango';

1;

=encoding utf8

=head1 NAME

Mango::Auth - Authentication

=head1 DESCRIPTION

A base class shared by all authentication backends.

=head1 ATTRIBUTES

=head2 mango

The attached L<Mango> instance.

=head1 SEE ALSO

L<Mango>, L<Mojolicious::Guides>, L<http://mojolicio.us>.

=cut