Files
HeurAMS/src/heurams/providers/audio/protocol.py
2025-12-19 15:13:42 +08:00

14 lines
264 B
Python

import pathlib
from typing import Protocol
from heurams.services.logger import get_logger
logger = get_logger(__name__)
class PlayFunctionProtocol(Protocol):
def __call__(self, path: pathlib.Path) -> None: ...
logger.debug("音频协议模块已加载")