ONO::Lib::Data

package ONO::Lib::Data;
################################################################################
# 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::Lib::Data not only contains data and information that can be used by
#: other modules, scripts and functions, it also offers modules that allow
#: to process data and information.

use ONO::Lib::Data::Animals;
use ONO::Lib::Data::Chemistry;
use ONO::Lib::Data::Color;
use ONO::Lib::Data::Compare;
use ONO::Lib::Data::Convert;
use ONO::Lib::Data::Currency;
use ONO::Lib::Data::Crypt;
use ONO::Lib::Data::Emojis;
use ONO::Lib::Data::Generators;
use ONO::Lib::Data::Geo;
use ONO::Lib::Data::Human;
use ONO::Lib::Data::Letters;
use ONO::Lib::Data::Locations;
use ONO::Lib::Data::Monitor;
use ONO::Lib::Data::Numbers;
use ONO::Lib::Data::Objects;
use ONO::Lib::Data::Persons;

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

1;

__END__