Added some basic POD for WebGUI::{Command,Deprecate}.pm

This commit is contained in:
Colin Kuskie 2011-10-19 17:04:40 -07:00
parent 01062458d9
commit 00738a17b2
2 changed files with 40 additions and 0 deletions

View file

@ -3,6 +3,23 @@ use strict;
use warnings;
use App::Cmd::Setup -app;
=head1 NAME
WebGUI::Command - Base class for WebGUI commands
=head1 SYNOPSIS
use WebGUI::Command;
#subroutines that you'd like to call via command line scripts or UI methods
=head1 DESCRIPTION
This is a subclass of App::Cmd::Setup.
=cut
use constant plugin_search_path => __PACKAGE__;
1;