Skip to content

Commit

Permalink
added client routes
Browse files Browse the repository at this point in the history
  • Loading branch information
niklastheman committed Feb 28, 2024
1 parent 09da923 commit 7bdc819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fedn/fedn/network/api/server.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from flask import Flask, jsonify, request
# from v1.client_routes import bp as client_bp
from v1.client_routes import bp as client_bp
# from v1.combiner_routes import bp as combiner_bp
# from v1.model_routes import bp as model_bp
# from v1.package_routes import bp as package_bp
Expand All @@ -24,10 +24,10 @@
control = Control(statestore=statestore)
api = API(statestore, control)
app = Flask(__name__)
app.register_blueprint(client_bp)
# app.register_blueprint(status_bp)
# app.register_blueprint(model_bp)
# app.register_blueprint(validation_bp)
# app.register_blueprint(client_bp)
# app.register_blueprint(package_bp)
# app.register_blueprint(session_bp)
# app.register_blueprint(combiner_bp)
Expand Down

0 comments on commit 7bdc819

Please sign in to comment.