upd project structure
This commit is contained in:
7
src/qbot/model/fsm_storage.py
Normal file
7
src/qbot/model/fsm_storage.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from sqlmodel import SQLModel, Field
|
||||
|
||||
|
||||
class FSMStorage(SQLModel, table=True):
|
||||
__tablename__ = "fsm_storage"
|
||||
key: str = Field(primary_key=True)
|
||||
value: str | None = None
|
||||
Reference in New Issue
Block a user