lapis-mc/yggdrasil

View on GitHub
src/main/kotlin/com/lapismc/minecraft/yggdrasil/rest/EmptyResponse.kt

Summary

Maintainability
A
0 mins
Test Coverage
package com.lapismc.minecraft.yggdrasil.rest

/**
 * An empty response meaning no content was received except that the request was successful.
 */
class EmptyResponse : Response() {
    /**
     * Indicates whether the request was successful.
     */
    override val successful = true
}