mirror of
https://github.com/Viren070/AIOStremio.git
synced 2025-12-01 23:24:19 +01:00
14 lines
266 B
Python
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
|