au.id.tmm.githubprlanguagedetection.github.model.RepositoryName.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
final case class RepositoryName(owner: String, repo: String) {
def asString: String = s"$owner/$repo"
}