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

io.taig.lokal.Country.scala Maven / Gradle / Ivy

package io.taig.lokal

import cats._
import cats.implicits._

final case class Country(value: String) extends AnyVal

object Country {
  implicit val eq: Eq[Country] = Eq.by(_.value)

  implicit val show: Show[Country] = _.value
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy