Start Matrix support, more refactoring, cleaner /help and /translate

This commit is contained in:
2024-06-17 00:32:03 +02:00
parent d687cbd51e
commit 09cf925850
19 changed files with 236 additions and 189 deletions

8
LibWinDog/Database.py Normal file
View File

@ -0,0 +1,8 @@
from peewee import *
Db = SqliteDatabase("Database.sqlite")
class BaseModel(Model):
class Meta:
database = Db