This commit is contained in:
2025-03-27 00:17:40 +03:00
parent 0246ff4b22
commit 4256d67789
6 changed files with 44 additions and 21 deletions
+4
View File
@@ -116,6 +116,10 @@ class Router:
return self._title
def set_title(self, title: str):
self._title = title
def get_all_commands(self) -> list[str]:
all_commands: list[str] = []
for command_entity in self._command_entities: