update
Browse files- routers/proxy.py +1 -1
routers/proxy.py
CHANGED
|
@@ -2,7 +2,7 @@ from fastapi import APIRouter, Request, HTTPException, Response
|
|
| 2 |
import httpx
|
| 3 |
|
| 4 |
LARAVEL_URL = "http://localhost:8000"
|
| 5 |
-
router = APIRouter(prefix="/
|
| 6 |
|
| 7 |
# GET
|
| 8 |
@router.get("/route/{path:path}")
|
|
|
|
| 2 |
import httpx
|
| 3 |
|
| 4 |
LARAVEL_URL = "http://localhost:8000"
|
| 5 |
+
router = APIRouter(prefix="/laravel", tags=["laravel"])
|
| 6 |
|
| 7 |
# GET
|
| 8 |
@router.get("/route/{path:path}")
|