chore(repo): initialize Cowork Local Gitea repository
CI / test (push) Canceled after 0s

This commit is contained in:
thanhnv
2026-08-09 20:12:05 +07:00
commit 414eaddca3
192 changed files with 48160 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
"""Entry point: ``python -m cowork_local``."""
from __future__ import annotations
import sys
def main() -> int:
# Imported lazily so that ``-h`` style tooling and tests can import the
# package without spinning up a full Qt application.
from .app import run
return run(sys.argv)
if __name__ == "__main__":
raise SystemExit(main())