Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support of Map[K, V] #1381

Open
achinaou opened this issue Mar 24, 2024 · 0 comments
Open

Support of Map[K, V] #1381

achinaou opened this issue Mar 24, 2024 · 0 comments

Comments

@achinaou
Copy link

achinaou commented Mar 24, 2024

Right now, the only supported variant of Map is Map[String, V].

It would be nice to support the case of Map[K, V]:

case class ConfigurationEntryId(value: String) extends AnyVal

object ConfigurationEntryId:

  given DeriveConfig[ConfigurationEntryId] =
    DeriveConfig[String].map(ConfigurationEntryId.apply)

case class ConfigurationEntryDetails(
    first: String,
    second: String
)

case class Configuration(
    all: Map[ConfigurationEntryId, ConfigurationEntryDetails]
)

object Configuration:

  val config: Config[Configuration] = deriveConfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant