mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-15 13:34:16 +00:00
25 lines
539 B
JavaScript
25 lines
539 B
JavaScript
import SettingsCore from "./settings"
|
|
import APICore from "./api"
|
|
import StyleCore from "./style"
|
|
import PermissionsCore from "./permissions"
|
|
|
|
import I18nCore from "./i18n"
|
|
import NotificationsCore from "./notifications"
|
|
import ShortcutsCore from "./shortcuts"
|
|
import SoundCore from "./sound"
|
|
|
|
import AudioPlayer from "./audioPlayer"
|
|
|
|
// DEFINE LOAD ORDER HERE
|
|
export default [
|
|
SettingsCore,
|
|
APICore,
|
|
PermissionsCore,
|
|
StyleCore,
|
|
I18nCore,
|
|
SoundCore,
|
|
NotificationsCore,
|
|
ShortcutsCore,
|
|
|
|
AudioPlayer,
|
|
] |