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

View File

@@ -0,0 +1,16 @@
from flask import Flask
manifest = {
"name": "Account Addon",
"version": "1.0.0",
"description": "An addon to manage user accounts.",
"author": "Mike",
"license": "",
"url": "",
"addon": "account"
}
def register_addon(app: Flask):
from .api import bp
app.register_blueprint(bp, url_prefix='/account')
pass