Files
quickbot/model/fsm_storage.py
Alexander Kalinovsky 6dbe0536ca init
2025-01-04 12:00:12 +01:00

8 lines
190 B
Python

from sqlmodel import SQLModel, Field
class FSMStorage(SQLModel, table = True):
__tablename__ = "fsm_storage"
key: str = Field(primary_key = True)
value: str | None = None