2022-12-02 23:41:50 +00:00
|
|
|
use config::CliConfig;
|
|
|
|
use eyre::Result;
|
|
|
|
|
|
|
|
use helios::prelude::*;
|
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() -> Result<()> {
|
|
|
|
// Load the config from the global config file
|
|
|
|
let config_path = home::home_dir().unwrap().join(".helios/helios.toml");
|
|
|
|
let config = Config::from_file(&config_path, "mainnet", &CliConfig::default());
|
2022-12-04 20:28:44 +00:00
|
|
|
println!("Constructed config: {config:#?}");
|
2022-12-02 23:41:50 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|