diff options
| author | Son <[email protected]> | 2024-04-28 19:11:38 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-04-28 18:11:38 -0500 |
| commit | e0dfd8c9fd14cb6b644d0f426e891fa6603916ab (patch) | |
| tree | 5f9a1399e2cabb38c321c93b96e5b16e5ddf1bca /src/services | |
| parent | 75d2714ff26254386abbf0ab9a76156d75d15e3c (diff) | |
| download | muse-e0dfd8c9fd14cb6b644d0f426e891fa6603916ab.tar.xz muse-e0dfd8c9fd14cb6b644d0f426e891fa6603916ab.zip | |
Fix ERR_MODULE_NOT_FOUND for constants file (#1023)
Co-authored-by: Max Isom <[email protected]>
Diffstat (limited to 'src/services')
| -rw-r--r-- | src/services/add-query-to-queue.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/services/add-query-to-queue.ts b/src/services/add-query-to-queue.ts index 317a0f9..2b84b63 100644 --- a/src/services/add-query-to-queue.ts +++ b/src/services/add-query-to-queue.ts @@ -11,9 +11,9 @@ import {buildPlayingMessageEmbed} from '../utils/build-embed.js'; import {getMemberVoiceChannel, getMostPopularVoiceChannel} from '../utils/channels.js'; import {getGuildSettings} from '../utils/get-guild-settings.js'; import {SponsorBlock} from 'sponsorblock-api'; -import Config from './config'; -import KeyValueCacheProvider from './key-value-cache'; -import {ONE_HOUR_IN_SECONDS} from '../utils/constants'; +import Config from './config.js'; +import KeyValueCacheProvider from './key-value-cache.js'; +import {ONE_HOUR_IN_SECONDS} from '../utils/constants.js'; @injectable() export default class AddQueryToQueue { |
