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

coursier.cache.PlatformCache.scala Maven / Gradle / Ivy

The newest version!
package coursier.cache

import java.io.File

import coursier.util.{Artifact, EitherT}

abstract class PlatformCache[F[_]] {

  /** This method computes the task needed to get a file. */
  def file(artifact: Artifact): EitherT[F, ArtifactError, File]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy