import orderWatchers from './order';
import payWatchers from './pay';
import refundWatchers from './refund';
const watchers = [
...orderWatchers,
...payWatchers,
...refundWatchers,
];
export default watchers;