Files
flask-addons-system-design-…/addons/account/api.py
2026-01-21 22:15:12 +08:00

11 lines
221 B
Python

from flask import Blueprint
bp = Blueprint('account', __name__)
@bp.route('/')
def account_home():
return "Welcome to the Account Addon!"
@bp.route('/profile')
def profile():
return "This is the user profile page."