scuriolus 0.3.0

Scuriolus is a modular trading bot platform.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use dotenv::dotenv;
use scuriolus::logger::load_loggers;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    dotenv().ok();

    // #[cfg(debug_assertions)]
    // std::env::set_var("RUST_LOG", "debug,mexc_rs=debug,hyper=info,surrealdb=warn");

    load_loggers();

    Ok(())
}