14 lines
264 B
Python
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("音频协议模块已加载")
|