clan-core/pkgs/clan-app/clan_app/__init__.py

15 lines
251 B
Python
Raw Normal View History

import logging
import sys
from clan_cli.profiler import profile
2024-06-05 09:23:12 +00:00
from clan_app.app import MainApplication
2023-11-21 17:13:30 +00:00
log = logging.getLogger(__name__)
2023-11-21 17:13:30 +00:00
@profile
def main(argv: list[str] = sys.argv) -> int:
app = MainApplication()
return app.run(argv)