- FastAPI server for Windows media control via WinRT/SMTC - Home Assistant custom integration with media player entity - Script button entities for system commands - Position tracking with grace period for track skip handling - Server availability detection in HA entity Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
265 B
Python
18 lines
265 B
Python
"""Pydantic models for the media server API."""
|
|
|
|
from .media import (
|
|
MediaState,
|
|
MediaStatus,
|
|
VolumeRequest,
|
|
SeekRequest,
|
|
MediaInfo,
|
|
)
|
|
|
|
__all__ = [
|
|
"MediaState",
|
|
"MediaStatus",
|
|
"VolumeRequest",
|
|
"SeekRequest",
|
|
"MediaInfo",
|
|
]
|