We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9e1545 commit 96b8b33Copy full SHA for 96b8b33
caracal/flow/app.py
@@ -188,7 +188,14 @@ def _run_help_flow(self) -> None:
188
action = show_submenu("help", self.console)
189
if action is None:
190
break
191
-
+
192
+ if action == "docs":
193
+ url = "https://docs.garudexlabs.com"
194
+ self.console.print(f" [{Colors.INFO}]Documentation:[/]")
195
+ self.console.print(f" [{Colors.HINT}][link={url}]{url}[/]")
196
+ self.console.print()
197
+ self.console.print(f" [{Colors.HINT}]Press Enter to continue...[/]")
198
+ input()
199
if action == "shortcuts":
200
self._show_shortcuts()
201
elif action == "about":
0 commit comments