diff --git a/routes/simulationmodel/simulationmodelEnpoints.go b/routes/simulationmodel/simulationmodelEnpoints.go index 1212ffb..51b59ae 100644 --- a/routes/simulationmodel/simulationmodelEnpoints.go +++ b/routes/simulationmodel/simulationmodelEnpoints.go @@ -11,6 +11,8 @@ func SimulationModelsRegister(r *gin.RouterGroup) { r.PUT("/:SimulationModelID", simulationmodelUpdateEp) r.GET("/:SimulationModelID", simulationmodelReadEp) r.DELETE("/:SimulationModelID", simulationmodelDeleteEp) + r.GET("/:SimulationModelID/cimfile", simulationmodelReadCIMfileEp) + r.PUT("/:SimulationModelID/cimfile", simulationmodelUpdateCIMfileEp) } func simulationmodelsReadEp(c *gin.Context) { @@ -44,3 +46,15 @@ func simulationmodelDeleteEp(c *gin.Context) { "message": "NOT implemented", }) } + +func simulationmodelReadCIMfileEp(c *gin.Context) { + c.JSON(http.StatusOK, gin.H{ + "message": "NOT implemented", + }) +} + +func simulationmodelUpdateCIMfileEp(c *gin.Context) { + c.JSON(http.StatusOK, gin.H{ + "message": "NOT implemented", + }) +} \ No newline at end of file