python学习

This commit is contained in:
2019-07-31 17:12:55 +08:00
parent 04327fbd47
commit f87f5ca73a
13 changed files with 841 additions and 317 deletions

View File

@@ -0,0 +1,8 @@
# -*- 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~~"