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