maincopy-server 0.1.0

Self-hosted publishing server with exact previews and explicit release approval
Documentation
1
2
3
4
5
6
use maincopy_server::{error::ProcessExit, startup::run_until_stop};

#[tokio::main]
async fn main() -> ProcessExit {
    run_until_stop().await
}