mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-02-22 05:38:09 +00:00
15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
'use strict';
|
|
|
|
var inherits = require('inherits');
|
|
|
|
var RuleProvider = require('diagram-js/lib/features/rules/RuleProvider');
|
|
|
|
function CustomRules(eventBus) {
|
|
RuleProvider.call(this, eventBus);
|
|
}
|
|
|
|
CustomRules.$inject = [ 'eventBus' ];
|
|
|
|
inherits(CustomRules, RuleProvider);
|
|
|
|
module.exports = CustomRules; |