12 lines
224 B
Go
12 lines
224 B
Go
package pesticide
|
|
|
|
import (
|
|
"wagfarm-api/generic"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func RegisterRoutes(rg *gin.RouterGroup) {
|
|
generic.RegisterCRUDRoutes(rg.Group("/pesticide"), generic.DefaultCRUDController[Pesticide]())
|
|
}
|