mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
|
(function bootGrafana() {
|
||
|
'use strict';
|
||
|
|
||
|
System.import('app/app').then(function(app) {
|
||
|
app.init();
|
||
|
}).catch(function(err) {
|
||
|
console.log('Loading app module failed: ', err);
|
||
|
});
|
||
|
|
||
|
})();
|