asimov_cli/commands/
help.rs

1// This is free and unencumbered software released into the public domain.
2
3use crate::Result;
4
5/// Prints extensive help message, executing `help` command for each subcommand.
6pub struct Help;
7
8impl Help {
9    pub fn execute(&self) -> Result {
10        unimplemented!()
11    }
12}