options
inline fun <T : Any> Route.options(noinline body: suspend PipelineContext<Unit, ApplicationCall>.(T) -> Unit): Route
Registers a typed handler body for a OPTIONS
location defined by the T class.
Class T must be annotated with Location.
Parameters
body
receives an instance of typed location T as first parameter.