8 lines
169 B
Python
8 lines
169 B
Python
from flask import Blueprint
|
|
|
|
pages = Blueprint('pages', __name__, url_prefix='/pages')
|
|
|
|
# place here, else circular import errors
|
|
from all_paw_care.pages import routes
|
|
|