2026-04-21 14:32:10 +02:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
2026-04-21 15:28:20 +02:00
|
|
|
from dotenv import load_dotenv
|
|
|
|
|
|
2026-04-21 17:42:37 +02:00
|
|
|
from cli_app import execute_command
|
2026-04-21 14:32:10 +02:00
|
|
|
from cli_parser import build_parser
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main() -> int:
|
2026-04-21 17:42:37 +02:00
|
|
|
load_dotenv()
|
2026-04-21 14:32:10 +02:00
|
|
|
args = build_parser().parse_args()
|
2026-04-21 17:42:37 +02:00
|
|
|
return execute_command(args)
|
2026-04-21 14:32:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
raise SystemExit(main())
|