mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
import coreModule from 'app/core/core_module';
|
|
|
|
export class AlertSrv {
|
|
constructor() {}
|
|
|
|
set() {
|
|
console.log('old depricated alert srv being used');
|
|
}
|
|
}
|
|
|
|
// this is just added to not break old plugins that might be using it
|
|
coreModule.service('alertSrv', AlertSrv);
|