Files
wagfarm/wagfarm-api/log/harvest/route.go
2025-04-15 22:36:22 +02:00

12 lines
221 B
Go

package harvest
import (
"wagfarm-api/generic"
"github.com/gin-gonic/gin"
)
func RegisterRoutes(rg *gin.RouterGroup) {
generic.RegisterCRUDRoutes(rg.Group("/harvest"), generic.DefaultCRUDController[HarvestLog]())
}