All checks were successful
Build Docker / BuildImage (push) Successful in 48s
9 lines
210 B
Python
9 lines
210 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) |