move top-level modules into a real package

This commit is contained in:
Matteo Rosati
2026-04-22 15:47:46 +02:00
parent e33160282c
commit 8ebab832d5
35 changed files with 6192 additions and 31 deletions
+16
View File
@@ -0,0 +1,16 @@
from __future__ import annotations
from dotenv import load_dotenv
from chromy.cli_app import execute_command
from chromy.cli_parser import build_parser
def main() -> int:
load_dotenv()
args = build_parser().parse_args()
return execute_command(args)
if __name__ == "__main__":
raise SystemExit(main())