16 lines
403 B
Go
16 lines
403 B
Go
package router
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
test_data "testData/api/erp"
|
|
)
|
|
|
|
func InitTestDataERPRouter(R *gin.RouterGroup) {
|
|
testDataService := test_data.InitTestDataService()
|
|
testDataGroup := R.Group("")
|
|
{
|
|
testDataGroup.GET("import/testFile/factorySelection", testDataService.FactorySelection)
|
|
testDataGroup.GET("warning/productSelection", testDataService.GetAllProductSelection)
|
|
}
|
|
}
|