Files
Nathanwoodburn.github.io/blueprints/template.py
Nathan Woodburn 8f774ba8f0
All checks were successful
Build Docker / BuildImage (push) Successful in 2m9s
feat: Added tools page
2025-10-26 18:00:18 +11:00

9 lines
204 B
Python

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