Hi, I am getting this error ``` Exception in thre...
# ktor
a
Hi, I am getting this error
Copy code
Exception in thread "main" com.typesafe.config.ConfigException$Missing: No configuration setting found for key 'ktor'
with code
Copy code
fun Application.module() {
   install(Routing) {
       get("/") {
           call.respondText("Hello", ContentType.Text.Html)
       }
   }
}

fun main(args: Array<String>) {
    embeddedServer(Netty, commandLineEnvironment(args)).start()
}