Initial commit: GSPro Remote MVP - Phase 1 complete

This commit is contained in:
Ryan Hill 2025-11-13 15:38:58 -06:00
commit 74ca4b38eb
50 changed files with 12818 additions and 0 deletions

13
backend/app/__init__.py Normal file
View file

@ -0,0 +1,13 @@
"""
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__"]