ends.bintry_2.11.0.5.2.source-code.Credentials.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bintry_2.11 Show documentation
Show all versions of bintry_2.11 Show documentation
your packages, delivered fresh
The newest version!
package bintry
import dispatch.Req
sealed trait Credentials {
def sign(req: Req): Req
}
object Credentials {
case class BasicAuth(user: String, pass: String) extends Credentials {
def sign(req: Req) =
req.as_!(user, pass)
}
}