grafana/public/app/core/services/alert_srv.ts

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);