All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.lt.lazy_people_http.request.RequestMethod.kt Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
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),
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy