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

13 lines
277 B
TypeScript
Raw Normal View History

2017-12-20 05:33:33 -06:00
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
2017-12-20 05:33:33 -06:00
coreModule.service('alertSrv', AlertSrv);