bestool 1.6.4

BES Deployment tooling
Documentation
1
2
3
4
5
6
7
8
9
pub use algae_cli::cli::keygen::{self, KeygenArgs};
use miette::Result;

use super::CryptoArgs;
use crate::actions::Context;

pub async fn run(ctx: Context<CryptoArgs, KeygenArgs>) -> Result<()> {
	keygen::run(ctx.args_sub).await
}