Hi I’m new on ktor and first time using netty serv...
# ktor
s
Hi I’m new on ktor and first time using netty server can you please tell me difference between these two
Copy code
io.ktor.server.netty.EngineMain.main(args)
and
Copy code
embeddedServer(Netty, port = 8282)
These both are same? in second we are manually passing parameters like port etc and in first we pass these with application.conf file is it right?