9 lines
295 B
Python
9 lines
295 B
Python
from typing import Final
|
|
|
|
from delta_barth.api.common import Session
|
|
from delta_barth.constants import HTTP_BASE_CONTENT_HEADERS
|
|
from delta_barth.errors import StateHandler
|
|
|
|
STATE_HANDLER: Final[StateHandler] = StateHandler()
|
|
CURRENT_SESSION: Final[Session] = Session(HTTP_BASE_CONTENT_HEADERS)
|