discord-proxy 0.1.0

Windows-first Discord process-local proxy launcher
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use anyhow::Result;
use clap::Parser;
use discord_proxy::cli::Cli;

#[tokio::main]
async fn main() -> Result<()> {
    tracing_subscriber::fmt()
        .with_target(false)
        .with_level(true)
        .init();

    discord_proxy::run(Cli::parse()).await
}