14 lines
441 B
Python
14 lines
441 B
Python
# -*- coding: utf-8 -*-
|
|
from flask import Blueprint
|
|
route_api = Blueprint( 'api_page',__name__ )
|
|
from web.controllers.api.Member import *
|
|
from web.controllers.api.Food import *
|
|
from web.controllers.api.Order import *
|
|
from web.controllers.api.My import *
|
|
from web.controllers.api.Cart import *
|
|
from web.controllers.api.Address import *
|
|
from web.controllers.api.Jieshao import *
|
|
|
|
@route_api.route("/")
|
|
def index():
|
|
return "Mina Api V1.0~~" |