adds target-exchange and initial migrations
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
from flask import Flask, Blueprint
|
||||
from . import commands, login
|
||||
from . import commands, login, target_exchange
|
||||
from .settings import ProdConfig, Config
|
||||
from .extensions import db, migrate, jwt
|
||||
from .exceptions import ApiException
|
||||
@@ -35,6 +35,7 @@ def register_blueprints(app: Flask):
|
||||
api_blueprint = Blueprint('api', __name__, url_prefix='/api')
|
||||
|
||||
api_blueprint.register_blueprint(login.views.blueprint, url_prefix='/login')
|
||||
api_blueprint.register_blueprint(target_exchange.views.blueprint, url_prefix='/target-exchange')
|
||||
|
||||
app.register_blueprint(api_blueprint)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user