Spaces:
Sleeping
Sleeping
Arnel Gwen Nuqui commited on
Commit Β·
6d636a3
1
Parent(s): 1629109
add classification
Browse files
app.py
CHANGED
|
@@ -43,13 +43,13 @@ CORS(
|
|
| 43 |
try:
|
| 44 |
print("π Attempting to import blueprints...")
|
| 45 |
|
| 46 |
-
|
| 47 |
-
from routes.webrtc_routes import webrtc_bp
|
| 48 |
|
| 49 |
print("β
Successfully imported blueprints!")
|
| 50 |
|
| 51 |
-
|
| 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 |
|