Implement CLI functionality and enhance README instructions

This commit is contained in:
zvspany
2026-04-29 17:31:27 +02:00
parent d17eed7314
commit 4dd83a8cda
7 changed files with 223 additions and 9 deletions

View File

@@ -1,3 +1,11 @@
from .app import CheckAddyApp
from __future__ import annotations
__all__ = ["CheckAddyApp"]
def __getattr__(name: str) -> object:
if name == "CheckAddyApp":
from .app import CheckAddyApp
return CheckAddyApp
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")