diff options
Diffstat (limited to 'gn3/api')
-rw-r--r-- | gn3/api/data_entry.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gn3/api/data_entry.py b/gn3/api/data_entry.py index e69a6cb..0a093d1 100644 --- a/gn3/api/data_entry.py +++ b/gn3/api/data_entry.py @@ -9,10 +9,12 @@ data_entry = Blueprint("data_entry", __name__) @data_entry.route("/phenotype", methods=["POST"], strict_slashes=False) def load_phenotype(): + """Load the phenotype""" return jsonify("Pass") @data_entry.route("/genotype", methods=["POST"], strict_slashes=False) def load_genotype(): + """Load the genotype""" return jsonify("Pass") |