Files
media-player-server/media_server/models/__init__.py
T
alexei.dolgolyov 5439af1955
Lint & Test / test (push) Failing after 9s
Release / create-release (push) Successful in 1s
Release / build-windows (push) Successful in 59s
Add CI/CD pipelines, NSIS installer, ES module bundling, and ruff linting
- Add Gitea Actions workflows: test.yml (lint + test on push/PR) and
  release.yml (build + NSIS installer + upload on v* tags)
- Add NSIS installer with optional desktop shortcut and auto-start
- Add esbuild bundler: ES module migration with IIFE bundle output
- Add build-dist-windows.sh for cross-building Windows distribution
- Fix all ruff lint errors (import sorting, unused imports, line length)
- Remove redundant scripts (start-server.bat, stop-server.bat,
  start-server-background.vbs)
- Update CLAUDE.md with CI/CD and release documentation
2026-03-23 02:01:28 +03:00

18 lines
265 B
Python

"""Pydantic models for the media server API."""
from .media import (
MediaInfo,
MediaState,
MediaStatus,
SeekRequest,
VolumeRequest,
)
__all__ = [
"MediaState",
"MediaStatus",
"VolumeRequest",
"SeekRequest",
"MediaInfo",
]