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

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