commonMain.com.lt.lazy_people_http.request.RequestMethod.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of LazyPeopleHttp-lib-jvm Show documentation
Show all versions of LazyPeopleHttp-lib-jvm Show documentation
Lazy people http, Retrofit of kmp all targets
package com.lt.lazy_people_http.request
import io.ktor.http.*
/**
* creator: lt 2023/3/9 [email protected]
* effect : 请求方式
* warning:
*/
enum class RequestMethod(val method: HttpMethod) {
/**
* get+query拼接url
*/
GET_QUERY(HttpMethod.Get),
/**
* post+field组合form表单
*/
POST_FIELD(HttpMethod.Post),
}