browser-go-api/users/user.py

11 lines
174 B
Python
Raw Normal View History

2019-10-01 23:32:11 +00:00
from flask import Blueprint
user = Blueprint('users', __name__)
@user.route('/<int:user_id>')
def func():
pass
@user.route('/<str:user_username>')
def func():
pass