All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ends.bintry_2.11.0.5.2.source-code.Credentials.scala Maven / Gradle / Ivy

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)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy