This commit is contained in:
2025-11-07 21:25:35 +03:00
parent 16e7cc21fb
commit 8edd59c1b8
11 changed files with 48 additions and 78 deletions
+3 -2
View File
@@ -1,8 +1,9 @@
from argenta import Router, Response, Command
work_router: Router = Router(title="Base points:")
work_router: Router = Router(title="Base points:", disable_redirect_stdout=True)
@work_router.command(Command('hello', description="Hello, world!"))
def command_help(response: Response):
print('Hello, world!')
c = input("Enter your name: ")
print(f"Hello, {c}!")