com.gabrielittner.github.diff.Storage.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 Storage {
fun store(name: String, content: String): String
fun saveApk(commit: String, apk: Apk): String
fun loadApk(name: String, commit: String?): Apk?
}