8 lines
201 B
Python
8 lines
201 B
Python
|
|
# -*- 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~~"
|