pytest-bdd-example/pytest_bdd_example/book/blueprint.py

8 lines
119 B
Python

from flask import Blueprint
from .admin import admin
book = Blueprint('book', __name__)
__all__ = ['book', 'admin']