From 84be9383bc34550840d47770e81e6b7265618beb Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Mon, 18 Dec 2023 13:56:10 +1000 Subject: [PATCH] fix --- src/cli/mod.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/cli/mod.rs b/src/cli/mod.rs index e2cd8f24..f8da43ad 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -27,6 +27,11 @@ pub struct Root { } impl Root { + /// Run the CLIs root command. + /// + /// ## Errors + /// + /// If the root command is configured with state that is invalid. pub fn run(&self) -> Result<(), Error> { match &self.cmd { Cmd::Types(c) => c.run(&self.channel),