1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//!
//! Mélodium loading engine and utilities.
//!
//! This crate provides loading logic and processing for the Mélodium environment.
//!
//! Look at the [Mélodium crate](https://docs.rs/melodium/latest/melodium/)
//! or the [Mélodium Project](https://melodium.tech/) for more detailed information.
//!
mod content;
mod loader;
mod loading_config;
mod package;
pub use loader::Loader;
pub use loading_config::LoadingConfig;