mirror of
https://github.com/drmext/MonkeyBusiness.git
synced 2024-11-27 17:00:59 +01:00
8 lines
90 B
Python
8 lines
90 B
Python
from tinydb import TinyDB
|
|
|
|
db = TinyDB("db.json", indent=4)
|
|
|
|
|
|
def get_db():
|
|
return db
|