Arnel Gwen Nuqui commited on
Commit
6d636a3
Β·
1 Parent(s): 1629109

add classification

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -43,13 +43,13 @@ CORS(
43
  try:
44
  print("πŸ” Attempting to import blueprints...")
45
 
46
- # from routes.classification_routes import classification_bp
47
- from routes.webrtc_routes import webrtc_bp
48
 
49
  print("βœ… Successfully imported blueprints!")
50
 
51
- # app.register_blueprint(classification_bp, url_prefix="/api")
52
- app.register_blueprint(webrtc_bp)
53
 
54
  print("βœ… Blueprints registered successfully.")
55
 
 
43
  try:
44
  print("πŸ” Attempting to import blueprints...")
45
 
46
+ from routes.classification_routes import classification_bp
47
+ #from routes.webrtc_routes import webrtc_bp
48
 
49
  print("βœ… Successfully imported blueprints!")
50
 
51
+ app.register_blueprint(classification_bp, url_prefix="/api")
52
+ #app.register_blueprint(webrtc_bp)
53
 
54
  print("βœ… Blueprints registered successfully.")
55