MonkeyBusiness/core_database.py

8 lines
90 B
Python
Raw Normal View History

2022-08-26 10:39:11 +00:00
from tinydb import TinyDB
2022-11-15 14:03:37 +00:00
db = TinyDB("db.json", indent=4)
2022-08-26 10:39:11 +00:00
def get_db():
return db