20 lines
602 B
JavaScript
20 lines
602 B
JavaScript
import aoCheckers from './accountOper';
|
|
import payCheckers from './pay';
|
|
import orderCheckers from './order';
|
|
import applicationCheckers from './application';
|
|
import offlineAccountCheckers from './offlineAccount';
|
|
import wpProductCheckers from './wpProduct';
|
|
import abstractCheckers from './abstractChecker';
|
|
import withdrawAccounts from './withdrawAccount';
|
|
const checkers = [
|
|
...withdrawAccounts,
|
|
...abstractCheckers,
|
|
...aoCheckers,
|
|
...payCheckers,
|
|
...orderCheckers,
|
|
...applicationCheckers,
|
|
...offlineAccountCheckers,
|
|
...wpProductCheckers,
|
|
];
|
|
export default checkers;
|