Files
odc-analyzer/app/services/CredentialsVerificationService.scala
Šesták Vít 4b87ced31f Initial commit
2016-01-10 17:31:07 +01:00

8 lines
168 B
Scala

package services
import scala.concurrent.Future
trait CredentialsVerificationService {
def verifyCredentials(username: String, password: String): Future[Boolean]
}