package router import ( "nCovTrack-Backend/handler" "github.com/gin-gonic/gin" ) func managementPublicRouter(router *gin.RouterGroup) { managementRouter := router.Group("/management") { managementRouter.GET("/observation/contact/pull/:patientId", handler.PullContactHandler) managementRouter.GET("/observation", handler.ListObservationsHandler) managementRouter.POST("/observation", handler.InsertObservationHandler) managementRouter.GET("/observation/:id", handler.GetObservationHandler) } }