Skip to main content

bijux_cli/interface/repl/
reference.rs

1use crate::routing::catalog::repl_reference_commands;
2
3/// Render stable REPL command reference text.
4#[must_use]
5pub fn render_repl_command_reference() -> String {
6    let mut lines = vec!["REPL Commands"];
7    lines.extend(repl_reference_commands());
8    format!("{}\n", lines.join("\n"))
9}