mirror of
https://github.com/drmext/MonkeyBusiness.git
synced 2024-11-15 02:57:38 +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
|