fester/backend/metrics/profile_store.py

10 lines
97 B
Python

PROFILES = []
def save(profile):
PROFILES.append(profile)
def all():
return PROFILES