Files
nym/ephemera/bin/main.rs
T
Bogdan-Ștefan Neacşu 29f95febe9 Feature/ephemera compile (#3437)
* Include ephemera node code in repo

* Upgrade deps

* Bump minor version of cosmwasm-std

* Include ephemera in nym-api dep and downgrade rusqlite

* Fix clippy and ephemera docs code

* More clippy on ephemera

---------

Co-authored-by: Andrus Salumets <andrus@nymtech.net>
2023-05-25 11:24:49 +03:00

13 lines
192 B
Rust

use clap::Parser;
use ephemera::cli::Cli;
use ephemera::logging;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
logging::init();
Cli::parse().execute().await?;
Ok(())
}