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

com.ebiznext.comet.utils.CliConfig.scala Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package com.ebiznext.comet.utils

import scopt.OParser

trait CliConfig[T] {
  def parser: OParser[Unit, T]
  def usage() = OParser.usage(parser)
  def parse(args: Seq[String]): Option[T]

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy