mirror of
https://github.com/maubot/maubot
synced 2025-08-29 15:40:37 +00:00
Refactor how plugins are started and update spec
This commit is contained in:
parent
b96d6e6a94
commit
9e066478a9
10 changed files with 160 additions and 79 deletions
|
@ -42,6 +42,7 @@ class DBClient(Base):
|
|||
id: UserID = Column(String(255), primary_key=True)
|
||||
homeserver: str = Column(String(255), nullable=False)
|
||||
access_token: str = Column(String(255), nullable=False)
|
||||
enabled: bool = Column(Boolean, nullable=False, default=False)
|
||||
|
||||
next_batch: SyncToken = Column(String(255), nullable=False, default="")
|
||||
filter_id: FilterID = Column(String(255), nullable=False, default="")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue