mirror of
https://github.com/trycua/computer.git
synced 2025-12-31 10:29:59 -06:00
12 lines
225 B
Python
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())
|