11 lines
308 B
Python
11 lines
308 B
Python
from .. import Config
|
|
from ..data import data as data_dir
|
|
import json
|
|
|
|
def load(filename:str):
|
|
with open(f'./{data_dir}/{filename}') as file:
|
|
return json.load(file)
|
|
|
|
def save(data:dict, filename:str):
|
|
with open(f'./{data_dir}/{filename}', 'w') as file:
|
|
json.dump(data, file, indent=4) |