|
|
|
@ -35,6 +35,12 @@ async def get_all_simulation(db_session: DbSession, common: CommonParameters):
|
|
|
|
|
|
|
|
|
|
|
|
results = await get_all(common)
|
|
|
|
results = await get_all(common)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
|
|
|
"data": results,
|
|
|
|
|
|
|
|
"status": "success",
|
|
|
|
|
|
|
|
"message": "Simulations result retrieved successfully",
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@router.post("/run", response_model=StandardResponse[str])
|
|
|
|
@router.post("/run", response_model=StandardResponse[str])
|
|
|
|
async def run_simulations(
|
|
|
|
async def run_simulations(
|
|
|
|
|