mirror of
https://github.com/drmext/MonkeyBusiness.git
synced 2026-04-16 18:16:27 -05:00
8 lines
128 B
Python
8 lines
128 B
Python
from tinydb import TinyDB
|
|
|
|
db = TinyDB("db.json", indent=2, encoding="utf-8", ensure_ascii=False)
|
|
|
|
|
|
def get_db():
|
|
return db
|