audiobook_server 1.0.2

A self-hosted audiobook server
Documentation
1
2
3
4
5
6
use audiobook_server::app_main;
#[tokio::main(flavor = "current_thread")]
async fn main() -> eyre::Result<()> {
    app_main().await?;
    Ok(())
}