16 lines
277 B
Python
16 lines
277 B
Python
"""State-related constants."""
|
|
|
|
from enum import Enum
|
|
|
|
|
|
class StateManagerMode(str, Enum):
|
|
"""State manager constants."""
|
|
|
|
DISK = "disk"
|
|
MEMORY = "memory"
|
|
REDIS = "redis"
|
|
|
|
|
|
FIELD_MARKER = "_rx_state_"
|
|
MEMO_MARKER = "_rx_memo_"
|
|
CAMEL_CASE_MEMO_MARKER = "RxMemo"
|