mirror of
https://github.com/getredash/redash.git
synced 2026-05-14 19:00:06 -04:00
12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
// eslint-disable-next-line import/no-mutable-exports
|
|
export let $http = null;
|
|
|
|
export default function init(ngModule) {
|
|
ngModule.run(($injector) => {
|
|
$http = $injector.get('$http');
|
|
});
|
|
}
|
|
|
|
init.init = true;
|
|
|