All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zio.http.ServerPlatformSpecific.scala Maven / Gradle / Ivy

The newest version!
package zio.http

import scala.annotation.nowarn

import zio._

import zio.http.Server.Config

@nowarn("msg=dead code")
trait ServerPlatformSpecific {
  val customized: ZLayer[Config, Throwable, Server] =
    throw new UnsupportedOperationException("Not implemented for Scala.js")

  val live: ZLayer[Config, Throwable, Server] =
    throw new UnsupportedOperationException("Not implemented for Scala.js")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy