Files
Nathanwoodburn.github.io/blueprints/template.py
Nathan Woodburn e489764ff8
All checks were successful
Build Docker / BuildImage (push) Successful in 1m6s
Check Code Quality / RuffCheck (push) Successful in 1m20s
fix: Add escape char for curl rendering and format python files
2025-11-21 23:05:40 +11:00

10 lines
211 B
Python

from flask import Blueprint, request
from tools import json_response
app = Blueprint("template", __name__)
@app.route("/", strict_slashes=False)
def index():
return json_response(request, "Success", 200)