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:
15
inputs/input.js
Normal file
15
inputs/input.js
Normal 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');
|
||||
};
|
||||
|
||||
}
|
Reference in New Issue
Block a user