Files
hamster-tycoon/handlers/hamster_handler.go
2020-05-10 01:28:30 +02:00

24 lines
364 B
Go

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){
}