odradev / odra

Odra framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`odra-cli`

zie1ony opened this issue · comments

Simplify a process of creating CLI layer for Odra contracts.

Insipiration:

trait CLITask {
    fn execute(&self);
}

#[odra::cli_task]
pub struct MintTokensTask {
    pub recipient: Address,
    pub amount: u64,
}

impl CLITask for MintTokensTask {
    fn execute(&self) {
        
    }
}

struct OdraCLI;

impl OdraCLI {
    fn add_task(&self, task: impl CLITask) {
        // task.execute();
    }
}

fn main_() {
    OdraCLI.with_task(MintTokensTask).parser()
}