Created
November 20, 2021 07:12
-
-
Save vaibhavgoyal09/91dd7d9cf4802c9a5938dae9924df62d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val socketConnection = SocketConnection() | |
fun main() { | |
embeddedServer(Netty, port = port, host = "0.0.0.0") { | |
install(CallLogging) | |
configureSockets() | |
configureRouting() | |
configureSerialization() | |
configureSession() | |
}.start(wait = true) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment