10 lines
241 B
Python
10 lines
241 B
Python
from flask import Blueprint
|
|
|
|
accounts = Blueprint('accounts', __name__,
|
|
template_folder='templates',
|
|
url_prefix='/accounts')
|
|
|
|
# Placed here to avoid circular import error
|
|
from accounts import views
|
|
|