librmo 0.4.4

A library to manage media files and play them
Documentation
//! Rust Media ORM
//!
//! Provides an ORM to structure referencing media files and metadata. Leveraging this information we can validate the metadata for presence.
//! From a single entry point of defining at least 1 root folder to start from, generate a full media library and run useful functions off them.
//! ```toml
//! [dependencies]
//! # Add to dependencies
//! librmo = "0.1.0"
//! ```

pub mod app;
pub mod audio;
pub mod entity;
pub mod error;
pub mod media_checker;
pub mod media_library;
pub mod media_manager;
pub mod media_player;
pub mod media_tags;
pub mod media_validator;
pub mod migration;