WWW::DaysOfWonder::Memoir44::App::Command - base class for sub-commands


WWW-DaysOfWonder-Memoir44 documentation Contained in the WWW-DaysOfWonder-Memoir44 distribution.

Index


Code Index:

NAME

Top

WWW::DaysOfWonder::Memoir44::App::Command - base class for sub-commands

VERSION

Top

version 2.110310

DESCRIPTION

Top

This module is the base class for all sub-commands. It doesn't do anything special currently but trusting methods for pod coverage.

AUTHOR

Top

  Jerome Quelin

COPYRIGHT AND LICENSE

Top


WWW-DaysOfWonder-Memoir44 documentation Contained in the WWW-DaysOfWonder-Memoir44 distribution.

#
# This file is part of WWW-DaysOfWonder-Memoir44
#
# This software is copyright (c) 2009 by Jerome Quelin.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
use 5.010;
use strict;
use warnings;

package WWW::DaysOfWonder::Memoir44::App::Command;
BEGIN {
  $WWW::DaysOfWonder::Memoir44::App::Command::VERSION = '2.110310';
}
# ABSTRACT: base class for sub-commands

use App::Cmd::Setup -command;


# -- public methods


1;



__END__