auths-cli 0.1.2

Command-line interface for Auths decentralized identity system
Documentation
1
2
3
4
5
6
7
use anyhow::Result;

use crate::config::CliConfig;

pub trait ExecutableCommand {
    fn execute(&self, ctx: &CliConfig) -> Result<()>;
}