feat: Added tools page
All checks were successful
Build Docker / BuildImage (push) Successful in 2m9s

This commit is contained in:
2025-10-26 18:00:18 +11:00
parent f4f5f47ee7
commit 8f774ba8f0
9 changed files with 341 additions and 5 deletions

9
blueprints/template.py Normal file
View File

@@ -0,0 +1,9 @@
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)