File size: 231 Bytes
b52fb35
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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