Update documentation and code snippets

This commit is contained in:
2025-12-02 11:22:31 +03:00
parent 2ff47398ba
commit 7c20bf296b
23 changed files with 63 additions and 62 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
from argenta.orchestrator.argparser import ArgParser, ValueArgument
# Создание аргументов
# Create arguments
config_arg = ValueArgument(
"config",
help="Path to configuration file",
@@ -20,7 +20,7 @@ host_arg = ValueArgument(
is_required=True
)
# Регистрация в ArgParser
# Register in ArgParser
parser = ArgParser(
processed_args=[config_arg, log_level_arg, host_arg],
name="MyApp",