Files
computer/libs/computer-server/computer_server/__main__.py
2025-05-13 09:25:38 -07:00

11 lines
224 B
Python

"""
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())