Skip to content

Instantly share code, notes, and snippets.

View klpx's full-sized avatar

Alexander Hasselbach klpx

View GitHub Profile
import cats.implicits._
import cats.{ Applicative, Monad }
// Операции над контекстом
trait ContextWriter[F[_]] {
def put(key: String, value: String): F[Unit]
}