All Downloads are FREE. Search and download functionalities are using the official Maven repository.

abellectl_2.12.1.0.0-RC3.source-code.package.scala Maven / Gradle / Ivy

There is a newer version: 1.1.0-RC3
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy