1
0
mirror of https://github.com/nttgin/BGPalerter.git synced 2024-05-19 06:50:08 +00:00

introduced input polymorphism and users groups

This commit is contained in:
Massimo Candela
2019-07-05 17:06:57 +02:00
parent b7ccdacf07
commit 6635a23b7f
10 changed files with 135 additions and 98 deletions

15
inputs/input.js Normal file
View File

@@ -0,0 +1,15 @@
export default class Input {
constructor(config){
};
getMonitoredMoreSpecifics = () => {
throw new Error('The method getMonitoredMoreSpecifics MUST be implemented');
};
getMonitoredPrefixes = () => {
throw new Error('The method getMonitoredPrefixes MUST be implemented');
};
}