|
package requestmapping
|
|
|
|
import (
|
|
"qteam/app/constants/common"
|
|
"qteam/app/http/entities/backend"
|
|
)
|
|
|
|
var BackendRequestMap = map[string]func() interface{}{
|
|
|
|
common.ADMIN_V1 + "/product/create": func() interface{} {
|
|
return new(backend.ProductCreateRequest)
|
|
},
|
|
}
|