fly4s.data.Location.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fly4s_3 Show documentation
Show all versions of fly4s_3 Show documentation
A functional wrapper for Flywayy
The newest version!
package fly4s.data
object Location {
def apply(value: String): Location = new Location(value)
}
object Locations {
def apply(values: String*): List[Location] = Locations(values)
def apply(values: Seq[String])(implicit dummyImplicit: DummyImplicit): List[Location] =
values.map(Location(_)).toList
}