Files

14 lines
441 B
Python
Raw Permalink Normal View History

2019-07-31 17:12:55 +08:00
# -*- coding: utf-8 -*-
from flask import Blueprint
2019-08-06 14:17:42 +08:00
route_api = Blueprint( 'api_page',__name__ )
2019-07-31 17:12:55 +08:00
from web.controllers.api.Member import *
2019-08-06 14:17:42 +08:00
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 *
2019-08-09 14:18:51 +08:00
from web.controllers.api.Jieshao import *
2019-07-31 17:12:55 +08:00
@route_api.route("/")
def index():
return "Mina Api V1.0~~"