| so now i have a rest api serving with echo
router.GET("/apps", GetAllApps) |
router.GET("/apps/:id", GetApp) |
router.PUT("/apps/:id", UpdateApp) |
router.POST("/apps", CreateApp) |
router.DELETE("/apps/:id", DeleteApp)
|
looking to break up the code into modules as this as is currently 180 lines long |