A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at main 11 lines 166 B view raw
1pub mod handlers; 2pub mod queue; 3pub mod server; 4pub mod types; 5 6use anyhow::Error; 7 8pub async fn run() -> Result<(), Error> { 9 server::run().await?; 10 Ok(()) 11}