fuel-core-keygen 0.19.2

Command line utilities for fuel-core key management
1
2
3
4
5
6
7
8
9
10
//! A simple keygen cli utility tool for configuring fuel-core

use clap::Parser;

pub mod keygen;

fn main() -> anyhow::Result<()> {
    let cmd = keygen::Command::parse();
    cmd.exec()
}