Files
2025-02-18 14:07:52 +00:00

14 lines
266 B
Python

from abc import ABC, abstractmethod
from typing import Dict, List
class StreamingService(ABC):
@abstractmethod
async def get_streams(self, meta_id: str) -> List[Dict]:
pass
@property
@abstractmethod
def name(self) -> str:
pass