Files
pyrom/app/routes/posts.py

8 lines
154 B
Python

from flask import Blueprint
bp = Blueprint('posts', __name__, url_prefix='/posts/')
@bp.get('/<int:post_id>/edit')
def edit(post_id):
return 'stub'