You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
293 B

package config
import org.rogach.scallop._
class Conf(arguments: Seq[String]) extends ScallopConf(arguments) {
val infile =
opt[String](default = Some("Input.txt"), descr = "Input file")
val outfile =
opt[String](default = Some("Output.txt"), descr = "Output file")
verify()
}