8 lines
183 B
Python
8 lines
183 B
Python
# -*- coding: utf-8 -*-
|
|
from flask import Blueprint
|
|
|
|
route_guanwang = Blueprint('guanwang_page', __name__)
|
|
|
|
@route_guanwang.route("/guanwang")
|
|
def guanwang():
|
|
return "doudouindex" |