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

tamer.oci.objectstorage.package.scala Maven / Gradle / Ivy

There is a newer version: 0.21.3
Show newest version
package tamer
package oci

import com.oracle.bmc.Region
import zio.{RIO, RLayer, ZLayer}
import zio.oci.objectstorage._

package object objectstorage {
  final def objectStorageLayer[R](region: Region, auth: RIO[R, ObjectStorageAuth]): RLayer[R, ObjectStorage] =
    ZLayer(auth).flatMap(auth => ObjectStorage.live(ObjectStorageSettings(region, auth.get))).mapError { e =>
      TamerError(e.getLocalizedMessage, e)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy