From 2ff93b2ae4c497b53ae12cea4bc24ab910dfe94a Mon Sep 17 00:00:00 2001 From: Halit Aksoy Date: Fri, 15 Jul 2022 19:29:55 +0300 Subject: [PATCH] move channel_names to consts folder --- src/{ => consts}/channel_names.ts | 0 src/index.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename src/{ => consts}/channel_names.ts (100%) diff --git a/src/channel_names.ts b/src/consts/channel_names.ts similarity index 100% rename from src/channel_names.ts rename to src/consts/channel_names.ts diff --git a/src/index.ts b/src/index.ts index 6696fb6..dc70e20 100644 --- a/src/index.ts +++ b/src/index.ts @@ -14,7 +14,7 @@ import { channel_on_game_start, channel_on_game_update, channel_on_game_user_leave, -} from "./channel_names"; +} from "./consts/channel_names"; import morgan from "morgan"; import { GameMove } from "./models/GameMove"; import { GameCrashManager } from "./GameCrashManager";