arch-warp-cli 0.1.0

Scaffold, build, test, and deploy Archway Network Smart Contracts faster than ever before
1
2
3
4
5
use crate::error::WarpError;

pub trait Executable {
    fn execute(&self) -> Result<(), WarpError>;
}