Added the scaffolding

This commit is contained in:
Connor Johnstone
2026-03-17 13:55:42 -04:00
parent cf95c520a0
commit fb05e2d5c0
39 changed files with 944 additions and 0 deletions

4
shanty-play/src/lib.rs Normal file
View File

@@ -0,0 +1,4 @@
//! Built-in music playback.
//!
//! Provides basic audio playback capabilities, including a built-in web player
//! component for the Shanty web interface.

3
shanty-play/src/main.rs Normal file
View File

@@ -0,0 +1,3 @@
fn main() {
println!("shanty-play: built-in music playback");
}