Reorganize lib folder w/typescript and python roots, initialize core library.

This commit is contained in:
Morgan Dean
2025-06-23 10:22:36 -07:00
parent d799bef5d9
commit 0246d18347
322 changed files with 6052 additions and 237 deletions

View File

@@ -0,0 +1,10 @@
"""
Main entry point for running the Computer Server as a module.
This allows the server to be started with `python -m computer_server`.
"""
import sys
from .cli import main
if __name__ == "__main__":
sys.exit(main())