This commit is contained in:
Alexander Kalinovsky
2025-01-04 12:00:12 +01:00
commit 6dbe0536ca
94 changed files with 3467 additions and 0 deletions

8
model/fsm_storage.py Normal file
View File

@@ -0,0 +1,8 @@
from sqlmodel import SQLModel, Field
class FSMStorage(SQLModel, table = True):
__tablename__ = "fsm_storage"
key: str = Field(primary_key = True)
value: str | None = None