LordXido's picture
Create app/vault.py
ae7ac96 verified
raw
history blame contribute delete
270 Bytes
VAULT = []
def store_reflex(timestamp, scenario_hash, score, state, source):
VAULT.append({
"timestamp": timestamp,
"scenario_hash": scenario_hash,
"score": score,
"state": state,
"source": source
})
return len(VAULT)