def get_atel_data()

in src/api/main.py [0:0]


def get_atel_data(record_id: str) -> RecordMetadata:
    if record_id not in data_atel:
        raise HTTPException(status_code=404, detail=f"The ATel message with id {record_id} doesn't exist.")
    return data_atel[record_id]