File size: 206 Bytes
4b7a511
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from flask import Flask
from flask_cors import CORS
from routes.video_routes import video_bp

app = Flask(__name__)

CORS(app, origins="*", allow_headers=["Content-Type"])

app.register_blueprint(video_bp)