feat(all): init
This commit is contained in:
11
addons/account/api.py
Normal file
11
addons/account/api.py
Normal 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."
|
||||
Reference in New Issue
Block a user