Merged with feat/add-standard-help

This commit is contained in:
2024-08-16 16:25:42 +03:00
parent 79298e5441
commit df1fed10c2
10 changed files with 125 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import asyncio
from importlib.metadata import version
from ocab_core import OCAB
from ocab_modules import module_loader
@@ -14,7 +15,9 @@ async def main():
module_loader("standard", "filters", safe=False),
module_loader("standard", "report"),
module_loader("standard", "welcome", safe=False),
]
module_loader("standard", "help"),
],
metainfo={"app_version": version("altlinux")},
)
await ocab.start()