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

com.lightningkite.lightningserver.http.HttpEndpoint.kt Maven / Gradle / Ivy

The newest version!
package com.lightningkite.lightningserver.http

import com.lightningkite.lightningserver.core.ServerPath

data class HttpEndpoint(val path: ServerPath, val method: HttpMethod) {
    constructor(string: String, method: HttpMethod) : this(
        path = ServerPath(string),
        method = method
    )

    override fun toString(): String = "$method $path"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy