16 lines
245 B
Python
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: ...
|