LPFCP route
In case you want much more flexibility, you can create an LPFCP route in your Ktor server routing instead of the whole server. Available only in Kotlin.
routing {
...
// Creates a post route with the specified path
lpfcp(processor, path = "/lpfcp")
...
}Last updated