com.freenow.sauron.plugins.protocw.Checker.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protocw-checker Show documentation
Show all versions of protocw-checker Show documentation
Sauron Protoc Wrapper Checker Plugin
The newest version!
package com.freenow.sauron.plugins.protocw
import arrow.core.Either
import java.util.Optional
interface Checker {
fun apply(
repoPath: Optional,
protocwFileName: Optional,
protocwPropertiesFileName: Optional
): Either
}