browser-go-api/api/home/home.py
2019-10-04 15:00:47 -07:00

7 lines
No EOL
106 B
Python

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