Fix example yml config file.
[blog.pm.git] / lib / Blog / Model / Comment.pm
blob453bbe69369bfd01279d1e333575a648e7d94352
1 package Blog::Model::Comment;
3 use strict;
5 use base qw/ Blog::RDBO /;
7 __PACKAGE__->config( name => 'Blog::RDBO::Comment' );
9 sub list {
10 my $self = shift;
11 my %args = %{ $_[ 0 ] };
13 return $self->manager->get_list( %args );
16 =head1 AUTHOR
18 vti
20 =head1 LICENSE
22 This library is free software, you can redistribute it and/or modify
23 it under the same terms as Perl itself.
25 =cut