in src/gcf/main.py [0:0]
def get_annotation(annotations_bucket, annotation_name):
json = read_json_str(annotations_bucket, annotation_name)
if json:
return make_response(json, 200)
return make_response("Annotation not found: %s" % annotation_name, 404)