Files
order/web/controllers/api/__init__.py

8 lines
201 B
Python
Raw Normal View History

2019-07-31 17:12:55 +08:00
# -*- coding: utf-8 -*-
from flask import Blueprint
route_api = Blueprint('api_page',__name__ )
from web.controllers.api.Member import *
@route_api.route("/")
def index():
return "Mina Api V1.0~~"