Initial commit: Quantum Terminal — Free & Open Source Trading Platform

This commit is contained in:
Quantum Terminal
2026-05-21 01:44:50 +03:00
commit b7ea418678
68 changed files with 16826 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
"""
system_routes.py — Stub for consumer terminal.
PRO-only routes. Consumer does not use these endpoints.
"""
from fastapi import APIRouter
def create_system_router(*args, **kwargs) -> APIRouter:
"""Return empty router — PRO endpoints not available in consumer."""
return APIRouter(tags=["system"])