celestedebugrc 0.5.2

Client for interacting with Everest DebugRC
Documentation
1
2
3
4
5
6
7
8
9
10
11
use anyhow::Result;
use celestedebugrc::DebugRC;

fn main() -> Result<()> {
    let debugrc = DebugRC::new();

    let res = debugrc.list_mods()?;
    dbg!(res);

    Ok(())
}