mirror of
https://github.com/quantum5/qlinks.git
synced 2025-08-05 01:28:54 -04:00
10 lines
162 B
Python
10 lines
162 B
Python
|
import abc
|
||
|
|
||
|
|
||
|
class BaseCDNCache(abc.ABC):
|
||
|
@abc.abstractmethod
|
||
|
def __init__(self): ...
|
||
|
|
||
|
@abc.abstractmethod
|
||
|
def purge(self, url: str) -> None: ...
|