package fr.dcproject.entity.request import io.ktor.application.ApplicationCall interface Request interface RequestBuilder { suspend fun getContent(call: ApplicationCall): E } suspend fun ApplicationCall.getContent(builder: RequestBuilder) = builder.getContent(this)