mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-15 05:24:15 +00:00
38 lines
802 B
JavaScript
Executable File
38 lines
802 B
JavaScript
Executable File
import SettingsCore from "./settings"
|
|
import TasksQueue from "./tasksQueue"
|
|
import APICore from "./api"
|
|
import StyleCore from "./style"
|
|
import PermissionsCore from "./permissions"
|
|
import ContextMenuCore from "./contextMenu"
|
|
|
|
import I18nCore from "./i18n"
|
|
import NotificationsCore from "./notifications"
|
|
import ShortcutsCore from "./shortcuts"
|
|
import SoundCore from "./sound"
|
|
|
|
import Player from "./player"
|
|
import RemoteStorage from "./remoteStorage"
|
|
|
|
import WidgetsCore from "./widgets"
|
|
|
|
import SyncCore from "./sync"
|
|
|
|
// DEFINE LOAD ORDER HERE
|
|
export default [
|
|
SettingsCore,
|
|
TasksQueue,
|
|
|
|
APICore,
|
|
PermissionsCore,
|
|
StyleCore,
|
|
I18nCore,
|
|
SoundCore,
|
|
NotificationsCore,
|
|
ShortcutsCore,
|
|
RemoteStorage,
|
|
|
|
Player,
|
|
ContextMenuCore,
|
|
WidgetsCore,
|
|
SyncCore,
|
|
] |