diff options
Diffstat (limited to 'gn3/api/gemma.py')
-rw-r--r-- | gn3/api/gemma.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gn3/api/gemma.py b/gn3/api/gemma.py new file mode 100644 index 0000000..ae23b34 --- /dev/null +++ b/gn3/api/gemma.py @@ -0,0 +1,10 @@ +"""Endpoints for running the gemma cmd""" +from flask import Blueprint + +gemma = Blueprint("gemma", __name__) + + +@gemma.route("/") +def index() -> str: + """Test endpoint""" + return "hello world" |