Files
Nathanwoodburn.github.io/blueprints/template.py
Nathan Woodburn 03dae87272
All checks were successful
Build Docker / BuildImage (push) Successful in 47s
feat: Refactor blueprints to make them easier to import
2025-10-30 18:22:21 +11:00

9 lines
188 B
Python

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