//! # Welcome to the mmlib documentation.
//! There is a formats module, go to the documentation for that module, and look for desired file types.
/// This macro is used to quickly re-export modules through a list.
#[macro_export]macro_rules!quickmodule{()=>{};($modname:ident)=>{pubmod$modname;};($modname:ident, $($tail:ident),*)=>{pubmod$modname;modlist!($($tail),*);}}quickmodule!(formats);