11 lines
190 B
Go
11 lines
190 B
Go
package crud
|
|
|
|
import (
|
|
pm "simrs-vx/internal/use-case/plugin/modifier"
|
|
)
|
|
|
|
func init() {
|
|
createPreMw = append(createPreMw, pm.ModifInput)
|
|
createPreMw = append(createPreMw, pm.CheckData)
|
|
}
|