mirror of
https://github.com/bohd4nx/FragmentAPI.git
synced 2026-07-25 06:14:29 +00:00
16 lines
299 B
Python
16 lines
299 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass
|
|
class CookieResult:
|
|
cookies: dict[str, str]
|
|
expires: str | None
|
|
|
|
def __repr__(self) -> str:
|
|
return f"CookieResult(cookies={self.cookies!r}, expires={self.expires!r})"
|
|
|
|
|
|
__all__ = ["CookieResult"]
|