discord-toggle-rpc 0.1.0

A simple command-line app to toggle Discord Rich Presence written in Rust.
Documentation
1
2
3
4
5
6
7
8
use discord_toggle_rpc::run;
use std::env;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    run(env::args()).await;
    Ok(())
}