miana 0.1.0

The is a boilerplate creating tool for diamond standard, it covers diamond standard with Hardhat(JavaScript), Hardhat(Type Script), Foundry, Foundry + Hardhat and the Modular flavour of all this code base.
Documentation
1
2
3
4
5
6
7
8
use std::{env};
use miana::{Config, pull};

fn main() {
    let args = env::args().collect::<Vec<String>>();
    let config = Config::new(args);
    pull(&config).unwrap();
}