29 lines
993 B
Perl
29 lines
993 B
Perl
package WebGUI::Operation;
|
|
|
|
#-------------------------------------------------------------------
|
|
# WebGUI is Copyright 2001-2002 Plain Black Software.
|
|
#-------------------------------------------------------------------
|
|
# Please read the legal notices (docs/legal.txt) and the license
|
|
# (docs/license.txt) that came with this distribution before using
|
|
# this software.
|
|
#-------------------------------------------------------------------
|
|
# http://www.plainblack.com info@plainblack.com
|
|
#-------------------------------------------------------------------
|
|
|
|
use strict;
|
|
use WebGUI::Operation::Account;
|
|
use WebGUI::Operation::Admin;
|
|
use WebGUI::Operation::Group;
|
|
use WebGUI::Operation::Help;
|
|
use WebGUI::Operation::Image;
|
|
use WebGUI::Operation::Package;
|
|
use WebGUI::Operation::Page;
|
|
use WebGUI::Operation::Search;
|
|
use WebGUI::Operation::Settings;
|
|
use WebGUI::Operation::Statistics;
|
|
use WebGUI::Operation::Style;
|
|
use WebGUI::Operation::Trash;
|
|
use WebGUI::Operation::User;
|
|
|
|
|
|
1;
|