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

12 lines
222 B
Go

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