14 lines
351 B
JavaScript
14 lines
351 B
JavaScript
import orderWatchers from './order';
|
|
import payWatchers from './pay';
|
|
import refundWatchers from './refund';
|
|
import shipWatchers from './ship';
|
|
import settlePlanWatchers from './settlePlan';
|
|
const watchers = [
|
|
...orderWatchers,
|
|
...payWatchers,
|
|
...refundWatchers,
|
|
...shipWatchers,
|
|
...settlePlanWatchers,
|
|
];
|
|
export default watchers;
|