From 5901528848acbc82ad57bdb6f4c25c51a52ead5c Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Tue, 16 Feb 2021 19:15:35 +0300 Subject: Add basic integration tests to test out the API --- gn3/api/gemma.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gn3') diff --git a/gn3/api/gemma.py b/gn3/api/gemma.py index ae23b34..30d486f 100644 --- a/gn3/api/gemma.py +++ b/gn3/api/gemma.py @@ -1,5 +1,6 @@ """Endpoints for running the gemma cmd""" from flask import Blueprint +from flask import jsonify gemma = Blueprint("gemma", __name__) @@ -7,4 +8,4 @@ gemma = Blueprint("gemma", __name__) @gemma.route("/") def index() -> str: """Test endpoint""" - return "hello world" + return jsonify(result="hello world") -- cgit v1.2.3