13 lines
292 B
Python
13 lines
292 B
Python
"""
|
|
GSPro Remote Backend Application
|
|
|
|
A FastAPI-based backend service for controlling GSPro golf simulator
|
|
via keyboard shortcuts and providing screen streaming capabilities.
|
|
"""
|
|
|
|
__version__ = "0.1.0"
|
|
__author__ = "GSPro Remote Team"
|
|
|
|
from .main import app
|
|
|
|
__all__ = ["app", "__version__"]
|