Now with formatting available

This commit is contained in:
Greg Hellings
2025-02-25 14:55:39 -06:00
parent be7d2873e6
commit 0c7843b386
6 changed files with 26 additions and 11 deletions
+6 -2
View File
@@ -14,11 +14,15 @@ impl Module {
self.module.get_name()
}
pub fn strip_text(&mut self) -> String {
self.module.pin_mut().strip_text()
pub fn render_text(&mut self) -> String {
self.module.pin_mut().render_text()
}
pub fn set_key_text(&mut self, key_text: &String) {
self.module.pin_mut().set_key_text(key_text);
}
pub fn strip_text(&mut self) -> String {
self.module.pin_mut().strip_text()
}
}