IBM / fp-go

functional programming library for golang
Apache License 2.0
1.63k stars 47 forks source link

ReaderIO / ReaderIOEither dependency injection sample #99

Closed darky closed 9 months ago

darky commented 9 months ago

Would be nice to have sample for ReaderIO / ReaderIOEither with Dependency injection It's very useful in Unit testing to use Reader for passing mocked IO

CarstenLeue commented 9 months ago

Hi @darky I have converted gcanti's example on reader dependency injection to fp-go: https://github.com/IBM/fp-go/tree/main/samples/getting-started-with-fp-ts/reader

For the I/O related usecase I have added:

https://github.com/IBM/fp-go/tree/main/samples/readerioeither/example1

Is this what you had been looking for?

darky commented 9 months ago

Hi @CarstenLeue Great! Thanks!