[config] Use Bucket type

This commit is contained in:
Paul Campbell 2019-05-07 20:32:38 +01:00
parent 605e62b957
commit a500e1f9d3

View file

@ -1,8 +1,10 @@
package net.kemitix.s3thorp package net.kemitix.s3thorp
case class Config(bucket: String = "", import net.kemitix.s3thorp.Sync.{Bucket, LocalPath}
case class Config(bucket: Bucket = "",
prefix: String = "", prefix: String = "",
source: String = "" source: LocalPath
) { ) {
} }