au.id.tmm.githubprlanguagedetection.github.configuration.GitHubCredentials.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of github-pr-language-detection-lib_2.13 Show documentation
Show all versions of github-pr-language-detection-lib_2.13 Show documentation
github-pr-language-detection-lib
The newest version!
package au.id.tmm.githubprlanguagedetection.github.configuration
sealed trait GitHubCredentials
object GitHubCredentials {
case object Anonymous extends GitHubCredentials
final case class AccessToken(username: String, token: String) extends GitHubCredentials
}