feat(all): init

This commit is contained in:
2026-01-21 22:15:12 +08:00
commit b896ed6644
8 changed files with 89 additions and 0 deletions

11
addons/account/api.py Normal file
View File

@@ -0,0 +1,11 @@
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."