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