mirror of
https://github.com/trycua/computer.git
synced 2026-01-05 04:50:08 -06:00
Reorganize lib folder w/typescript and python roots, initialize core library.
This commit is contained in:
20
libs/python/computer-server/computer_server/__init__.py
Normal file
20
libs/python/computer-server/computer_server/__init__.py
Normal file
@@ -0,0 +1,20 @@
|
||||
"""
|
||||
Computer API package.
|
||||
Provides a server interface for the Computer API.
|
||||
"""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
__version__: str = "0.1.0"
|
||||
|
||||
# Explicitly export Server for static type checkers
|
||||
from .server import Server as Server # noqa: F401
|
||||
|
||||
__all__ = ["Server", "run_cli"]
|
||||
|
||||
|
||||
def run_cli() -> None:
|
||||
"""Entry point for CLI"""
|
||||
from .cli import main
|
||||
|
||||
main()
|
||||
Reference in New Issue
Block a user