Spaces:
Running
Running
Update app/api/routes.py
Browse files- app/api/routes.py +1 -1
app/api/routes.py
CHANGED
|
@@ -5,7 +5,7 @@ import asyncio
|
|
| 5 |
from app.services import extraction
|
| 6 |
from app.services import image_query
|
| 7 |
|
| 8 |
-
api_bp = Blueprint('api', __name__)
|
| 9 |
|
| 10 |
@api_bp.route('/', methods=['GET'])
|
| 11 |
def health_check():
|
|
|
|
| 5 |
from app.services import extraction
|
| 6 |
from app.services import image_query
|
| 7 |
|
| 8 |
+
api_bp = Blueprint('api', __name__, url_prefix='/api')
|
| 9 |
|
| 10 |
@api_bp.route('/', methods=['GET'])
|
| 11 |
def health_check():
|