change log api to reflect data split into base and extension
This commit is contained in:
15
wagfarm-api/logs/generic/route.go
Normal file
15
wagfarm-api/logs/generic/route.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package generic
|
||||
|
||||
import (
|
||||
"wagfarm-api/generic"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func RegisterCRUDRoutes(rg *gin.RouterGroup, l generic.CRUDController) {
|
||||
generic.RegisterCRUDRoutes(rg, l)
|
||||
}
|
||||
|
||||
func RegisterRRoutes(rg *gin.RouterGroup, l generic.RController) {
|
||||
generic.RegisterRRoutes(rg, l)
|
||||
}
|
||||
Reference in New Issue
Block a user