Reorganize project structure

This commit is contained in:
zv
2026-03-06 18:20:43 +01:00
parent 04c209ae23
commit 7e0c0afddf
26 changed files with 1520 additions and 1311 deletions

11
checkaddy_app/main.py Normal file
View File

@@ -0,0 +1,11 @@
from __future__ import annotations
from .app import CheckAddyApp
def main() -> None:
CheckAddyApp().run()
if __name__ == "__main__":
main()