Add contributor guide and project usage docs

This commit is contained in:
2026-02-16 22:48:05 +09:00
parent 1e552f8c46
commit 87482efd6d
16 changed files with 671 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
"""CLI 엔트리포인트."""
from lazy_enter.bridge import Bridge
def main() -> None:
bridge = Bridge()
bridge.run()
if __name__ == "__main__":
main()