ONO::FW

package ONO::FW;
################################################################################
# COPYRIGHT / LICENSE #
################################################################################
#
# This file is part of the ONO Software Project.
#
# Copyright (C) 2000-2025 Jos KIRPS [ www.kirps.com | jos_AT_kirps_DOT_com ]
# and The Joopita Project [ www.joopita.org | contact_AT_joopita_DOT_com ]
#
# This file, as well as other parts of the ONO Software Project or related
# elements, are FREE SOFTWARE available under the ARTISTIC LICENSE 2.0.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# For the full license, see /ono/osr/license/LICENSE.txt, or write to
# jos_AT_kirps_DOT_com or contact_AT_joopita_DOT_com.
#
################################################################################
# END OF COPYRIGHT / LICENSE, HERE COMES THE CODE ... #
################################################################################


use strict;

###############################################################################
# ONO
###############################################################################

#: ONO::FW contains the ONO Frameworks, which are mostly ready-to-use modules
#: offering quite advanced user environments.
#:
#: Frameworks include ONO::Community (community environment and social
#: network), ONO::Edu (virtual classroom), ONO::Media (file manager), ONO::Wiki
#: (wiki), ONO::Store (web store / online shop), and ONO::Web (website builder
#: and manager).
#:
#: ONO::FW modules can directly be used in front end scripts to offer advanced
#: tools and features to users.

use ONO::FW::Apps;
use ONO::FW::User;
use ONO::FW::DB;
use ONO::Legacy::Edu;
use ONO::FW::Game;
use ONO::FW::IBS;
use ONO::FW::Media;
use ONO::FW::Wiki;
use ONO::FW::Store;
use ONO::FW::Web;

###############################################################################
# end of script
###############################################################################

1;

__END__