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
db = TinyDB('db.json', indent=4)
def get_db():
return db