au.id.tmm.githubprlanguagedetection.github.model.Repository.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.model
import java.net.URI
final case class Repository(
cloneUris: Repository.CloneUris,
name: RepositoryName,
)
object Repository {
final case class CloneUris(
ssh: String,
https: URI,
)
}