Small fixes and cleanup

This commit is contained in:
Guntis Smaukstelis
2023-05-24 16:01:48 +03:00
parent c1625e75fa
commit 77026a9cb0
3 changed files with 12 additions and 16 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ object Main {
log <- Slf4jLogger.create[IO]
dbService <- DBService.of
lines <- dbService.getInRange(from, to)
parsed <- IO.pure(Parser.queryData(userQuery, lines))
parsed <- IO(Parser.queryData(userQuery, lines))
_ <- log.info(parsed.asJson.toString)
} yield ()
}