mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-14 07:44:00 +01:00
18 lines
530 B
Scala
18 lines
530 B
Scala
package com.ysoft.odc
|
|
|
|
import javax.inject.Named
|
|
|
|
import com.google.inject.Inject
|
|
|
|
import scala.concurrent.Future
|
|
|
|
class LocalFilesDownloader @Inject() (@Named("reports-path") path: String) extends Downloader{
|
|
override def downloadProjectReports(projects: Set[String], requiredVersions: Map[String, Int]): Future[(Map[String, (Build, ArtifactItem, ArtifactFile)], Map[String, Throwable])] = {
|
|
if(requiredVersions != Map()){
|
|
sys.error("Versions are not supported there")
|
|
}
|
|
projects.map{pn => ???}
|
|
???
|
|
}
|
|
}
|