mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
14 lines
336 B
Python
14 lines
336 B
Python
from argenta import App
|
|
|
|
|
|
def custom_print_function(text: str) -> None:
|
|
"""Простая пользовательская функция вывода с префиксом."""
|
|
print(f"Префикс: {text}")
|
|
|
|
|
|
app = App(
|
|
initial_message="My App",
|
|
override_system_messages=True,
|
|
print_func=custom_print_function,
|
|
)
|