diff options
Diffstat (limited to 'gn3/api')
-rw-r--r-- | gn3/api/__init__.py | 0 | ||||
-rw-r--r-- | gn3/api/gemma.py | 10 |
2 files changed, 10 insertions, 0 deletions
diff --git a/gn3/api/__init__.py b/gn3/api/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/gn3/api/__init__.py 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" |