to_ck/ck/struct_cache.py
2021-04-21 18:02:03 +08:00

12 lines
202 B
Python

import json
class StructCacheFile:
def __init__(self):
pass
@staticmethod
def update(db, tb, data):
with open(f'{db}_{tb}.json', 'w') as f:
json.dump(data, f)