node-event-bot/index.ts

15 lines
404 B
TypeScript
Raw Normal View History

2022-01-03 15:07:49 +01:00
import { config } from "./server/configuration"
import Server from "./server/server"
2022-03-09 12:29:42 +01:00
import { ExtendedClient } from "./server/structures/client"
2022-01-03 15:07:49 +01:00
2022-05-05 21:34:51 +02:00
//const server = Server.init(config.port)
2022-04-12 22:39:47 +02:00
export const client = new ExtendedClient()
2022-05-05 21:34:51 +02:00
client.start()
2022-01-03 15:07:49 +01:00
2022-05-05 21:34:51 +02:00
//server.start(() => {
// console.log(`Server running on port ${server.getPort()}`)
// //const discordAdapter = new DiscordAdapter()
// client.start()
//})