
net.message.ParameterStatus.scala Maven / Gradle / Ivy
// Copyright (c) 2018-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT
package skunk.net.message
import cats.syntax.all._
import scodec.interop.cats._
import scodec.Decoder
case class ParameterStatus(name: String, value: String) extends BackendMessage
object ParameterStatus {
final val Tag = 'S'
val decoder: Decoder[ParameterStatus] = (utf8z.asDecoder, utf8z.asDecoder).mapN(apply)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy