aboutsummaryrefslogtreecommitdiff
path: root/src/commands/stop.ts
diff options
context:
space:
mode:
authorSon <[email protected]>2024-04-28 19:11:38 -0400
committerGitHub <[email protected]>2024-04-28 18:11:38 -0500
commite0dfd8c9fd14cb6b644d0f426e891fa6603916ab (patch)
tree5f9a1399e2cabb38c321c93b96e5b16e5ddf1bca /src/commands/stop.ts
parent75d2714ff26254386abbf0ab9a76156d75d15e3c (diff)
downloadmuse-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/commands/stop.ts')
-rw-r--r--src/commands/stop.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/stop.ts b/src/commands/stop.ts
index 818fda6..295b7fe 100644
--- a/src/commands/stop.ts
+++ b/src/commands/stop.ts
@@ -4,7 +4,7 @@ import {TYPES} from '../types.js';
import {inject, injectable} from 'inversify';
import PlayerManager from '../managers/player.js';
import {STATUS} from '../services/player.js';
-import Command from '.';
+import Command from './index.js';
@injectable()
export default class implements Command {