mirror of
https://github.com/fleetbase/fleetbase.git
synced 2026-01-06 14:40:12 +00:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
export function initialize(application) {
|
|
const universe = application.lookup('service:universe');
|
|
if (universe) {
|
|
universe.createRegistries(['@fleetbase/console', 'auth:login']);
|
|
universe.bootEngines(application);
|
|
}
|
|
}
|
|
|
|
export default {
|
|
initialize,
|
|
};
|