2024-04-22 21:14:54 -04:00

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