[app] S3Throp expects Config as parameter
This commit is contained in:
parent
d45f590c15
commit
b16862ea20
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@ import cats.effect.IO
|
|||
|
||||
object S3Thorp {
|
||||
|
||||
def putStrLn(value: String): IO[Unit] = IO(println(value))
|
||||
def putStrLn(value: String) = IO { println(value) }
|
||||
|
||||
def apply(args: List[String]): IO[Unit] = {
|
||||
def apply(args: Config): IO[Unit] = {
|
||||
for {
|
||||
_ <- putStrLn("S3Thorp - hashed sync for s3")
|
||||
} yield ()
|
||||
|
|
Loading…
Reference in a new issue