Reimplement chat message command

This commit is contained in:
Joscha 2024-03-09 15:20:57 +01:00
parent 5cdc62bd29
commit 9ebcabbf36
2 changed files with 54 additions and 21 deletions

View file

@ -103,4 +103,8 @@ impl<C> Tree<C> {
Ok(image)
}
pub fn print_debug(&mut self, root: NodeId) {
self.tree.print_tree(root)
}
}