forked from FOSS/Steam-Panel
v 3.0.3
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from abc import (
|
||||
ABC,
|
||||
abstractmethod,
|
||||
)
|
||||
from typing import Mapping
|
||||
|
||||
|
||||
class CookieStorageAbstract(ABC):
|
||||
|
||||
@abstractmethod
|
||||
async def set(self, login: str, cookies: Mapping[str, Mapping[str, str]]) -> None: # noqa:U100
|
||||
...
|
||||
|
||||
@abstractmethod
|
||||
async def get(self, login: str, domain: str) -> Mapping[str, str]: # noqa:U100
|
||||
...
|
||||
Reference in New Issue
Block a user