From 2dd592c0b04478695d3b5b32744ac09466387a78 Mon Sep 17 00:00:00 2001 From: dakkar Date: Wed, 19 Oct 2005 18:28:34 +0000 Subject: template iniziale --- lib/Bookmarks.pm | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 lib/Bookmarks.pm (limited to 'lib') diff --git a/lib/Bookmarks.pm b/lib/Bookmarks.pm new file mode 100644 index 0000000..4603e5e --- /dev/null +++ b/lib/Bookmarks.pm @@ -0,0 +1,50 @@ +package Bookmarks; + +use strict; +use Catalyst qw/-Debug/; + +our $VERSION = '0.01'; + +Bookmarks->config( name => 'Bookmarks' ); + +Bookmarks->setup; + +=head1 NAME + +Bookmarks - Catalyst based application + +=head1 SYNOPSIS + + script/bookmarks_server.pl + +=head1 DESCRIPTION + +Catalyst based application. + +=head1 METHODS + +=over 4 + +=item default + +=cut + +sub default : Private { + my ( $self, $c ) = @_; + $c->res->output('Congratulations, Bookmarks is on Catalyst!'); +} + +=back + +=head1 AUTHOR + +Catalyst developer + +=head1 LICENSE + +This library is free software . You can redistribute it and/or modify +it under the same terms as perl itself. + +=cut + +1; -- cgit v1.2.3