mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-15 08:14:02 +01:00
11 lines
288 B
Scala
11 lines
288 B
Scala
package com.ysoft.odc
|
|
import scala.concurrent.Future
|
|
|
|
/**
|
|
* Created by user on 10/30/15.
|
|
*/
|
|
trait Downloader {
|
|
|
|
def downloadProjectReports(projects: Set[String], requiredVersions: Map[String, Int]): Future[(Map[String, (Build, ArtifactItem, ArtifactFile)], Map[String, Throwable])]
|
|
}
|