12 lines
282 B
Python
12 lines
282 B
Python
from flask import Blueprint, make_response, jsonify
|
|
from .controller import MainController
|
|
|
|
main_bp = Blueprint('main', __name__)
|
|
|
|
main_controller = MainController()
|
|
|
|
@main_bp.route('/')
|
|
def index():
|
|
result=main_controller.index()
|
|
return make_response(jsonify(data=result))
|