source: LATMOS-Accounts-Web/lib/LATMOS/Accounts/Web/Model/Accounts.pm @ 97

Last change on this file since 97 was 97, checked in by nanardon, 15 years ago
  • first html page \o/
File size: 590 bytes
Line 
1package LATMOS::Accounts::Web::Model::Accounts;
2
3use strict;
4use warnings;
5use lib qw(../LATMOS-Accounts/lib);
6use base 'Catalyst::Model';
7use base 'LATMOS::Accounts';
8
9=head1 NAME
10
11LATMOS::Accounts::Web::Model::Accounts - Catalyst Model
12
13=head1 DESCRIPTION
14
15Catalyst Model.
16
17=cut
18
19sub new {
20    my ($class) = @_;
21    bless(LATMOS::Accounts->new(
22            LATMOS::Accounts::Web->config->{config}
23        ), $class);
24}
25
26
27=head1 AUTHOR
28
29Thauvin Olivier
30
31=head1 LICENSE
32
33This library is free software, you can redistribute it and/or modify
34it under the same terms as Perl itself.
35
36=cut
37
381;
Note: See TracBrowser for help on using the repository browser.