The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

# [[[ HEADER ]]]
use strict;
our $VERSION = 0.001_000;
# [[[ INCLUDES ]]]
use MongoDB;
# [[[ EXPORTS ]]]
use RPerl::Exporter 'import';
our @EXPORT = (
@RPerl::DataStructure::MongoDBBSON::EXPORT,
@RPerl::Operation::Expression::Operator::MongoDBFunctions::EXPORT,
@MongoDB::EXPORT,
# @MongoDB::EXPORT_OK, # DEV NOTE: force export all allowed exports FOO_*(), so RPerl users only have to say 'use RPerl::Support::MongoDB;' w/out the 'qw(:all)'
);
our @EXPORT_OK = (
@RPerl::DataStructure::MongoDBBSON::EXPORT_OK,
@RPerl::Operation::Expression::Operator::MongoDBFunctions::EXPORT_OK,
@MongoDB::EXPORT_OK,
);
1; # end of package