full rework

This commit is contained in:
2025-06-22 19:59:48 +02:00
parent 3faa6f9a40
commit ad61784744
30 changed files with 928 additions and 979 deletions

View File

@@ -0,0 +1,7 @@
from abc import ABC, abstractmethod
class Provider(ABC):
@abstractmethod
def GetLink(self, embededLink: str, DEFAULT_REQUEST_TIMEOUT: int) -> (str, [str]):
pass