summary refs log tree commit diff
path: root/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.ts b/src/index.ts

index 8765d6dc..2f8aa185 100644 --- a/src/index.ts +++ b/src/index.ts
@@ -1,4 +1,4 @@ -import { Server } from "./Server"; +import { DiscordServer } from "./Server"; -const server = new Server(); +const server = new DiscordServer(); server.start().catch(console.error);