CodexByte_Runtime / codexbyte_db.py
LordXido's picture
Create codexbyte_db.py
b52fb35 verified
raw
history blame
231 Bytes
import json
DB_FILE = "codexbyte_db.json"
def fetch_latest_data(runtime_config):
"""
Loads and validates the CodexByte commodity universe.
"""
with open(DB_FILE, "r") as f:
db = json.load(f)
return db