![JAR search and dependency download from the Maven repository](/logo.png)
abellectl_2.11.1.1.0-RC3.source-code.package.scala Maven / Gradle / Ivy
package info.hupel.isabelle
import java.nio.file.{Path, Paths}
import caseapp.core.ArgParser
import info.hupel.isabelle.api.Version
package object cli {
implicit val pathParser: ArgParser[Path] =
ArgParser.instance[Path] { s => Right(Paths.get(s)) }
implicit val versionParser: ArgParser[Version] =
ArgParser.instance[Version](Version.parse)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy