first commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
from abc import ABC, abstractmethod
|
||||
|
||||
class Provider(ABC):
|
||||
|
||||
@staticmethod
|
||||
@abstractmethod
|
||||
def domain() -> str:
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def get_mediainfo(self) -> tuple[dict, list]:
|
||||
pass
|
||||
|
||||
@abstractmethod
|
||||
def get_url(self) -> str:
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user