8 lines
179 B
Python
8 lines
179 B
Python
from abc import ABC, abstractmethod
|
|
|
|
|
|
class Provider(ABC):
|
|
@abstractmethod
|
|
def GetLink(self, embededLink: str, DEFAULT_REQUEST_TIMEOUT: int) -> (str, [str]):
|
|
pass
|