dave08
04/19/2018, 12:47 PMfun main(args: Array<String>) {
embeddedServer(Netty, port = 8080, module = Application::apiModule).start(wait = true)
embeddedServer(Netty, port = 9090, module = Application::internalModule).start(wait = true)
}
Or will the first one block the thread and never get to the second?