This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
implicit val logHandler: FSHandler[Log.Op, Task] = (new PrintlnLogger).andThen(idToTask) | |
implicit val gh: GitHubClient.Handler[Task] = new InHouseGHClient(clientId, clientSecret) | |
implicit val xa: Transactor[Task] = ... // Doobie Transactor | |
implicit val db: LoginDatabase.Handler[Task] = new LoginDoobieHandler(xa) | |
implicit val jwtService: FSHandler[JwtService.Op, Task] = ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment