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
package xyz.neurotrade.tax | |
import cats.effect.std.Queue | |
import cats.effect.{Async, Resource} | |
import cats.implicits._ | |
object EffectfulRef { | |
def apply[F[_]: Async, S]( | |
initialState: S, | |
): Resource[F, EffectfulRef[F, S]] = for { |