12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
|
|
import RulesModule from '../rules';
|
||
|
|
|
||
|
|
import AttachSupport from './AttachSupport';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
__depends__: [
|
||
|
|
RulesModule
|
||
|
|
],
|
||
|
|
__init__: [ 'attachSupport' ],
|
||
|
|
attachSupport: [ 'type', AttachSupport ]
|
||
|
|
};
|