Skip to content

Commit

Permalink
Close #315 - [refined4s-circe] Add numeric, strings and network objec…
Browse files Browse the repository at this point in the history
…ts in refined4s.modules.circe.derivation.types
  • Loading branch information
kevin-lee committed May 1, 2024
1 parent e02999c commit 11b109b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ trait network {
inline given derivedDynamicPortNumberDecoder: Decoder[DynamicPortNumber] = Decoder[Int].emap(DynamicPortNumber.from)

}
object network extends network
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,4 @@ trait numeric {
inline given derivedNonPosBigDecimalDecoder: Decoder[NonPosBigDecimal] = Decoder[BigDecimal].emap(NonPosBigDecimal.from)

}
object numeric extends numeric
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ trait strings {
inline given derivedUuidDecoder: Decoder[Uuid] = Decoder[String].emap(Uuid.from)

}
object strings extends strings

0 comments on commit 11b109b

Please sign in to comment.