move messagelisteners to a separate directory

This commit is contained in:
SethBurkart123
2024-02-11 07:10:35 +11:00
parent c257cf0b3c
commit f54e8f2a0c
3 changed files with 8 additions and 8 deletions
@@ -1,7 +1,7 @@
import browser from 'webextension-polyfill'
import { MenuOptionsOpen, OpenMenuOptions, OpenWhatsNewPopup, closeSettings } from '../../SEQTA';
import { deleteTheme, disableTheme, downloadTheme, listThemes, setTheme } from '../ui/Themes';
import { MenuOptionsOpen, OpenMenuOptions, OpenWhatsNewPopup, closeSettings } from '../../../SEQTA';
import { deleteTheme, disableTheme, downloadTheme, listThemes, setTheme } from '../../ui/Themes';
export class MessageHandler {
constructor() {
@@ -8,10 +8,10 @@ import {
addShortcuts,
disableNotificationCollector,
enableNotificationCollector,
} from '../../SEQTA';
import { updateBgDurations } from '../ui/Animation';
import { getDarkMode, updateAllColors } from '../ui/colors/Manager';
import { appendBackgroundToUI } from '../ui/ImageBackgrounds';
} from '../../../SEQTA';
import { updateBgDurations } from '../../ui/Animation';
import { getDarkMode, updateAllColors } from '../../ui/colors/Manager';
import { appendBackgroundToUI } from '../../ui/ImageBackgrounds';
export default class StorageListener {