package ONO::Lib;
################################################################################
# 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;
###############################################################################
# LOAD SUB-MODULES
###############################################################################
#: ONO::Lib is the ONO software library, a collection of modules offering a
#: large number of functions that allow to manipulate files and data.
#:
#: The ONO software library is extensively used to most other ONO modules.
#:
#: ONO::Lib modules can directly be used as building blocks in front end
#: scripts and in software projects.
use ONO::Lib::AI;
use ONO::Lib::Audio;
use ONO::Lib::Basic;
use ONO::Lib::Code;
use ONO::Lib::Content;
use ONO::Lib::Data;
use ONO::Lib::DateTime;
use ONO::Lib::Encoding;
use ONO::Lib::File;
use ONO::Lib::Image;
use ONO::Lib::Lang;
use ONO::Lib::Mail;
use ONO::Lib::Math;
use ONO::Lib::Net;
use ONO::Lib::Parser;
use ONO::Lib::PDF;
use ONO::Lib::SQL;
use ONO::Lib::Text;
use ONO::Lib::UI;
use ONO::Lib::Video;
use ONO::Lib::Web;
###############################################################################
# end of script
###############################################################################
1;
__END__