This file contains hidden or 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
//> using lib "org.http4s::http4s-ember-server:0.23.19" | |
//> using lib "org.http4s::http4s-dsl:0.23.19" | |
package foo | |
import cats.effect._ | |
import cats.syntax.all._ | |
import org.http4s.implicits._ | |
import org.http4s.ember.server._ | |
import org.http4s._ |
This file contains hidden or 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
//> using dep "com.typesafe:config:1.4.3" | |
//> using dep "com.github.pureconfig::pureconfig:0.17.6" | |
//> using scala "2.13.14" | |
import com.typesafe.config._ | |
import pureconfig.generic.semiauto._ | |
import pureconfig.ConfigReader | |
import pureconfig.ConfigSource | |
import java.{util => ju} |
This file contains hidden or 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 foo | |
import scalapb.GeneratedMessageCompanion | |
import scalapb.descriptors._ | |
import org.scalacheck.Gen | |
import com.google.protobuf.ByteString | |
import scalapb.GeneratedMessage | |
object ProtoScalacheck { |
OlderNewer