/
beyondviolet
/
edw_prefect
Обзор
Документация
Войти
/
beyondviolet
/
edw_prefect
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
lib/context.py
31 строка
470 B
get458
first_commit
04 авг 2026, 07:38
04 авг 2026, 07:38
b3e3bb3
Код
Авторство
О чём код?
from dataclasses import dataclass @dataclass class SessionContext: origin: str = "http://localhost" host: str = "0.0.0.0" is_debug: bool = False @dataclass class DeviceContext: id: str = "SERVER" type: str = "local" @dataclass class RoleContext: kind: str = "server" @dataclass class UserContext: role: RoleContext @dataclass class ShoppingRequestContext: session: SessionContext device: DeviceContext user: UserContext