8 lines
176 B
Python
8 lines
176 B
Python
|
'''
|
||
|
For handling portfolio blueprints
|
||
|
'''
|
||
|
from flask import Blueprint
|
||
|
|
||
|
portfolio_blueprint = Blueprint('portfolio', __name__, template_folder='templates')
|
||
|
|
||
|
from . import routes
|