com.gabrielittner.github.diff.Remote.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of github-diff Show documentation
Show all versions of github-diff Show documentation
Diff apks and post results to Github
package com.gabrielittner.github.diff
interface Remote {
fun latestReleaseCommit(): String?
fun pullRequestMergeBaseCommit(number: Int): String
fun postComment(number: Int, comment: String)
}