Remove forward slash from the root agents endpoint

This commit is contained in:
sabaimran 2024-03-28 23:06:45 +05:30
parent a374288cea
commit 1195f843a3

View file

@ -16,7 +16,7 @@ logger = logging.getLogger(__name__)
api_agents = APIRouter()
@api_agents.get("/", response_class=Response)
@api_agents.get("", response_class=Response)
async def all_agents(
request: Request,
common: CommonQueryParams,