Files
mcma-backend/app/api/rest/system.py
T
2026-06-06 13:00:01 +03:00

16 lines
245 B
Python

"""Subsonic system endpoints: ping and license."""
from typing import Any
from fastapi import APIRouter
router = APIRouter()
@router.get("/ping")
async def ping() -> Any: ...
@router.get("/getLicense")
async def get_license() -> Any: ...