24 lines
369 B
Go
24 lines
369 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) {
|
|
|
|
}
|