7 lines
160 B
Kotlin
7 lines
160 B
Kotlin
package app.git
|
|
|
|
import org.eclipse.jgit.revwalk.RevCommit
|
|
|
|
sealed interface TaskEvent {
|
|
data class RebaseInteractive(val revCommit: RevCommit): TaskEvent
|
|
} |