aboutsummaryrefslogtreecommitdiff
path: root/gn3/api
diff options
context:
space:
mode:
Diffstat (limited to 'gn3/api')
-rw-r--r--gn3/api/gemma.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/gn3/api/gemma.py b/gn3/api/gemma.py
index c9c4e54..f5d4768 100644
--- a/gn3/api/gemma.py
+++ b/gn3/api/gemma.py
@@ -3,14 +3,9 @@ from flask import Blueprint
from flask import current_app
from flask import jsonify
-gemma = Blueprint("gemma", __name__)
-
from gn3.commands import run_cmd
-@gemma.route("/")
-def index() -> str:
- """Test endpoint"""
- return jsonify(result="hello world")
+gemma = Blueprint("gemma", __name__)
@gemma.route("/version")