2022-06-21 17:19:12 +05:30
|
|
|
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
|
|
|
|
import initTerraformNotification from '~/projects/terraform_notification';
|
2021-09-04 01:27:46 +05:30
|
|
|
import { initSidebarTracking } from '../shared/nav/sidebar_tracking';
|
2021-03-11 19:13:27 +05:30
|
|
|
import Project from './project';
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
new Project(); // eslint-disable-line no-new
|
|
|
|
new ShortcutsNavigation(); // eslint-disable-line no-new
|
2021-09-04 01:27:46 +05:30
|
|
|
initSidebarTracking();
|
2021-09-30 23:02:18 +05:30
|
|
|
initTerraformNotification();
|