13 lines
319 B
Go
13 lines
319 B
Go
package orders
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func ApplyOrderRouter(router *gin.Engine) *gin.Engine {
|
|
router.GET("/orders", FindOrders)
|
|
router.POST("/orders", CreateOrder)
|
|
router.GET("/orders/:id", FindOrder)
|
|
router.PATCH("/orders/:id", UpdateOrder)
|
|
router.DELETE("/orders/:id", DeleteOrder)
|
|
return router
|
|
}
|