feat: add empty handler

This commit is contained in:
Jeffrey Duroyon
2020-05-10 01:28:30 +02:00
parent 520eeba8fd
commit 4369438ff2
5 changed files with 103 additions and 27 deletions

View File

@@ -0,0 +1,23 @@
package handlers
import "github.com/gin-gonic/gin"
func (hc *handlersContext) getAllHamsters(c *gin.Context){
}
func (hc *handlersContext) getAHamster(c *gin.Context){
}
func (hc *handlersContext) createAHamster(c *gin.Context){
}
func (hc *handlersContext) updateAHamster(c *gin.Context){
}
func (hc *handlersContext) deleteAHamster(c *gin.Context){
}