8 lines
155 B
Python
8 lines
155 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'
|