I like the fact that it feels less needed to creat...
# announcements
m
I like the fact that it feels less needed to create special classes to set things up is a big plus. This is something I feel that could be adopted by ktor. Just as an example as what I mean:
Copy code
KTor.config {
    defaults {
        get {
            contentType = "text/html"
        }
    }
    executor = Executors.pool...
}

KTor {
    get("/mypath") {
        contentType = "text/html"
        body = "<html><h1>Hello World</h1></html>"
    }
}