staff 0.11.0

Music theory library with midi, notes, chords, scales, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::render::Diagram;

pub struct FretDiagram {
    diagram: Diagram,
}

impl FretDiagram {
    pub fn new(diagram: Diagram) -> Self {
        Self { diagram }
    }
}