init
This commit is contained in:
8
model/fsm_storage.py
Normal file
8
model/fsm_storage.py
Normal 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
|
||||
Reference in New Issue
Block a user