browser-go-api/api/home/home.py

7 lines
106 B
Python
Raw Normal View History

2019-10-01 23:32:11 +00:00
from flask import Blueprint
home = Blueprint('home', __name__)
@home.route('/home')
def func():
pass