16 lines
403 B
Rust
16 lines
403 B
Rust
use config::CliConfig;
|
|
use dirs::home_dir;
|
|
use eyre::Result;
|
|
|
|
use helios::prelude::*;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
// Load the config from the global config file
|
|
let config_path = home_dir().unwrap().join(".helios/helios.toml");
|
|
let config = Config::from_file(&config_path, "mainnet", &CliConfig::default());
|
|
println!("Constructed config: {config:#?}");
|
|
|
|
Ok(())
|
|
}
|