mirror of https://github.com/sbt/sbt.git
8 lines
157 B
Scala
8 lines
157 B
Scala
|
|
package sbt
|
||
|
|
|
||
|
|
final case class ConfigKey(name: String)
|
||
|
|
object ConfigKey
|
||
|
|
{
|
||
|
|
implicit def configurationToKey(c: Configuration): ConfigKey = ConfigKey(c.name)
|
||
|
|
}
|