mirror of
https://github.com/Benexl/FastAnime.git
synced 2026-01-03 00:10:03 -08:00
10 lines
339 B
Python
10 lines
339 B
Python
"""
|
|
The player package provides abstractions and implementations for media player integration in FastAnime.
|
|
|
|
This package defines the base player interface, player parameter/result types, and concrete implementations for various media players (e.g., MPV, VLC, Syncplay).
|
|
"""
|
|
|
|
from .player import create_player
|
|
|
|
__all__ = ["create_player"]
|