MonkeyBusiness/core_database.py

8 lines
128 B
Python
Raw Normal View History

2022-08-26 12:39:11 +02:00
from tinydb import TinyDB
2023-05-20 21:54:32 +02:00
db = TinyDB("db.json", indent=2, encoding="utf-8", ensure_ascii=False)
2022-08-26 12:39:11 +02:00
def get_db():
return db