19 lines
369 B
JavaScript
19 lines
369 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);
|
|
|
|
CustomRules.prototype.init = function() {
|
|
// placeholder
|
|
};
|
|
|
|
module.exports = CustomRules; |