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