use mingling::macros::{help, renderer}; use crate::EntryFallback; #[help] pub fn help_global(_: EntryFallback) -> String { include_str!("helps/help.txt").to_string() } #[renderer] pub fn render_global_hint(_: EntryFallback) -> String { "Error: unknown command, please use `tscn2bsn /H` for help".into() }