browser-go-api/home/home.py
2019-10-01 16:32:11 -07:00

7 lines
No EOL
106 B
Python

from flask import Blueprint
home = Blueprint('home', __name__)
@home.route('/home')
def func():
pass