pub fn daemon_command_registry() -> &'static [CommandEntry]Expand description
Returns the static registry of daemon / remote-connection commands.
These commands manage connectivity to a background Zeph daemon process.
ยงExamples
use zeph_tui::command::daemon_command_registry;
let registry = daemon_command_registry();
assert!(registry.iter().any(|e| e.id == "daemon:connect"));