9 lines
194 B
Go
9 lines
194 B
Go
|
package requestmapping
|
||
|
|
||
|
var BackendRequestMap = map[string]func() interface{}{
|
||
|
|
||
|
//common.ADMIN_V1 + "/product/create": func() interface{} {
|
||
|
// return new(backend.ProductCreateRequest)
|
||
|
//},
|
||
|
}
|