com.freenow.sauron.plugins.protocw.Validator.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.nio.file.Path
interface Validator {
fun check(repository: Path): Either
}