i've got a question (may be more kotlin generic) `...
# ktor
p
i've got a question (may be more kotlin generic)
Copy code
fun Application.app() {...}

fun main(args: Array<String>) {
      embeddedServer(Netty, 8080) { this.app() }
}
is this the good way to pass around the receiving parameter function ?