overtone 0.1.1

An API for creation and management of rich (as in rich-text) musical-ish projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use overtone::{errors::OvertoneApiError, project::Project};

fn main() -> Result<(), OvertoneApiError> {
    let mut p = Project::load_from_directory("./examples/Untitled Project")?;

    let pl = p.load_plugin("music-core".to_string());

    let _ = dbg!(pl);

    Ok(())
}