Files
computer/libs/python/computer-server/computer_server/__main__.py
2025-10-22 11:35:31 -07:00

12 lines
225 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())