Files
wagfarm/wagfarm-api/logs/cropprotection/route.go

12 lines
243 B
Go

package cropprotection
import (
"wagfarm-api/logs/generic"
"github.com/gin-gonic/gin"
)
func RegisterRoutes(rg *gin.RouterGroup) {
generic.RegisterCRUDRoutes(rg.Group("/cropprotection"), generic.LogCRUDController[CropProtectionLog]())
}