24 lines
354 B
Go
24 lines
354 B
Go
package handlers
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
func (hc *handlersContext) getAllCages(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func (hc *handlersContext) getACage(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func (hc *handlersContext) createACage(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func (hc *handlersContext) updateACage(c *gin.Context) {
|
|
|
|
}
|
|
|
|
func (hc *handlersContext) deleteACage(c *gin.Context) {
|
|
|
|
}
|