Added the scaffolding
This commit is contained in:
14
shanty-serve/Cargo.toml
Normal file
14
shanty-serve/Cargo.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[package]
|
||||
name = "shanty-serve"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
description = "Music serving and streaming for Shanty"
|
||||
|
||||
[dependencies]
|
||||
shanty-db = { path = "../shanty-db" }
|
||||
clap = { workspace = true }
|
||||
serde = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
4
shanty-serve/src/lib.rs
Normal file
4
shanty-serve/src/lib.rs
Normal file
@@ -0,0 +1,4 @@
|
||||
//! Music serving and streaming.
|
||||
//!
|
||||
//! Serves music files for playback, with optional Subsonic API compatibility
|
||||
//! for use with existing Subsonic-compatible clients.
|
||||
3
shanty-serve/src/main.rs
Normal file
3
shanty-serve/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("shanty-serve: music serving and streaming");
|
||||
}
|
||||
Reference in New Issue
Block a user