video_clip编辑接口
This commit is contained in:
parent
df20bab1ac
commit
abb883e63e
2
app.py
2
app.py
@ -5,6 +5,7 @@ from controller.api.config_blueprint import blueprint as api_config_blueprint
|
|||||||
from controller.api.collector_blueprint import blueprint as api_collector_blueprint
|
from controller.api.collector_blueprint import blueprint as api_collector_blueprint
|
||||||
from controller.api.bilirecorder_blueprint import blueprint as api_bilirecorder_blueprint
|
from controller.api.bilirecorder_blueprint import blueprint as api_bilirecorder_blueprint
|
||||||
from controller.api.workflow_blueprint import blueprint as api_workflow_blueprint
|
from controller.api.workflow_blueprint import blueprint as api_workflow_blueprint
|
||||||
|
from controller.api.video_clip_blueprint import blueprint as api_video_clip_blueprint
|
||||||
from model import db
|
from model import db
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
@ -21,6 +22,7 @@ app.register_blueprint(api_config_blueprint)
|
|||||||
app.register_blueprint(api_collector_blueprint)
|
app.register_blueprint(api_collector_blueprint)
|
||||||
app.register_blueprint(api_bilirecorder_blueprint)
|
app.register_blueprint(api_bilirecorder_blueprint)
|
||||||
app.register_blueprint(api_workflow_blueprint)
|
app.register_blueprint(api_workflow_blueprint)
|
||||||
|
app.register_blueprint(api_video_clip_blueprint)
|
||||||
with app.app_context():
|
with app.app_context():
|
||||||
# db.drop_all(app=app)
|
# db.drop_all(app=app)
|
||||||
db.create_all(app=app)
|
db.create_all(app=app)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user