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