diff options
| author | handingkang <[email protected]> | 2024-01-19 17:50:57 +0800 |
|---|---|---|
| committer | handingkang <[email protected]> | 2024-01-19 17:50:57 +0800 |
| commit | c423b3072b19c34a7f777cfa7e019baac6c3d7f1 (patch) | |
| tree | 60fb4edd5df29a4cb835211ce6c2d0b0ac8b5250 /apps/apiv1.py | |
| parent | 54a5df53fb0c69c3a812234702335451c356c369 (diff) | |
Diffstat (limited to 'apps/apiv1.py')
| -rw-r--r-- | apps/apiv1.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/apiv1.py b/apps/apiv1.py index 05d3435..f0fd426 100644 --- a/apps/apiv1.py +++ b/apps/apiv1.py @@ -2,6 +2,7 @@ from apiflask import APIBlueprint, Schema from apiflask.fields import Integer, String, Field from .data import bp as databp +from .fx import bp as fxbp from .stats import bp as statsbp from .sysinfo import bp as sysbp @@ -9,6 +10,7 @@ bp = APIBlueprint('apiv1', __name__, url_prefix="/api") bp.register_blueprint(statsbp) bp.register_blueprint(databp) bp.register_blueprint(sysbp) +bp.register_blueprint(fxbp) class Response(Schema): |
