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

org.jetbrains.kotlinx.jupyter.common.Response.kt Maven / Gradle / Ivy

package org.jetbrains.kotlinx.jupyter.common

interface Response {
    val status: Status
    val text: String
}

data class Status(val code: Int)

val Status.successful: Boolean get() = code in 200..299




© 2015 - 2025 Weber Informatics LLC | Privacy Policy