feat: add service and model

This commit is contained in:
Jeffrey Duroyon
2020-05-10 23:58:49 +02:00
parent 4369438ff2
commit c8993f1ca3
20 changed files with 89 additions and 29 deletions

View File

@@ -2,22 +2,22 @@ package handlers
import "github.com/gin-gonic/gin"
func (hc *handlersContext) getAllCages(c *gin.Context){
func (hc *handlersContext) getAllCages(c *gin.Context) {
}
func (hc *handlersContext) getACage(c *gin.Context){
func (hc *handlersContext) getACage(c *gin.Context) {
}
func (hc *handlersContext) createACage(c *gin.Context){
func (hc *handlersContext) createACage(c *gin.Context) {
}
func (hc *handlersContext) updateACage(c *gin.Context){
func (hc *handlersContext) updateACage(c *gin.Context) {
}
func (hc *handlersContext) deleteACage(c *gin.Context){
func (hc *handlersContext) deleteACage(c *gin.Context) {
}