mirror of
https://github.com/ysoftdevs/odc-analyzer.git
synced 2026-01-14 15:53:53 +01:00
8 lines
183 B
Scala
8 lines
183 B
Scala
package services
|
|
|
|
import scala.concurrent.Future
|
|
|
|
trait CredentialsVerificationService {
|
|
def verifyCredentials(username: String, password: String): Future[Either[String, String]]
|
|
}
|