MonkeyBusiness/core_database.py

8 lines
128 B
Python
Raw Normal View History

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