au.id.tmm.githubprlanguagedetection.github.configuration.GitHubInstance.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
import java.net.URI
sealed trait GitHubInstance
object GitHubInstance {
case object GitHubDotCom extends GitHubInstance
final case class GitHubEnterprise(base: URI) extends GitHubInstance
}