asto 0.1.0

Asto is a minimalist DSL for documenting CLI tools, built from the ground up in Rust.
Enum HashValue {
    Info,
    List
}

{
    "node": "Input",
    "prefix": "fnd",
    "function": "hi",
    "command": "ml mine --path --silent"
    "desc": "Inicia a mineração",
    "params": {
        "--path": {
            "short": "-p",
            "type": "STRING",
            "desc": "File Path."
        },
        "--silent": {
            "short": "-s",
            "type": "BOOL",
            "desc": "Disable output logs after use commands."
        }
    }
}