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