15 lines
404 B
TypeScript
15 lines
404 B
TypeScript
import { config } from "./server/configuration"
|
|
import Server from "./server/server"
|
|
import { ExtendedClient } from "./server/structures/client"
|
|
|
|
//const server = Server.init(config.port)
|
|
export const client = new ExtendedClient()
|
|
|
|
client.start()
|
|
|
|
//server.start(() => {
|
|
// console.log(`Server running on port ${server.getPort()}`)
|
|
// //const discordAdapter = new DiscordAdapter()
|
|
// client.start()
|
|
//})
|