blob: ae23b341d43b81b8ce68ca5374fdd72d003f4719 (
plain)
1
2
3
4
5
6
7
8
9
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"
|