aboutsummaryrefslogtreecommitdiff
path: root/gn3/api/gemma.py
blob: 30d486f46e24c359b80790fde0a6ba9021d352bf (plain)
1
2
3
4
5
6
7
8
9
10
11
"""Endpoints for running the gemma cmd"""
from flask import Blueprint
from flask import jsonify

gemma = Blueprint("gemma", __name__)


@gemma.route("/")
def index() -> str:
    """Test endpoint"""
    return jsonify(result="hello world")