Main

object Main extends IOApp
trait IOApp
class Object
trait Matchable
class Any
Main.type

Value members

Concrete methods

def execute(usage: PolystatUsage): IO[Unit]
def filterAnalyzers(inex: Option[IncludeExclude]): List[EOAnalyzer]
def findMissingKeys(givenKeys: List[String], availableKeys: List[String]): ValidatedNel[ValidationError, Unit]
def reportValidationErrors(errors: NonEmptyList[ValidationError]): IO[Unit]
override def run(args: List[String]): IO[ExitCode]

The entry point for your application. Will be called by the runtime when the process is started. If the underlying runtime supports it, any arguments passed to the process will be made available in the args parameter. The numeric value within the resulting ExitCode will be used as the exit code when the process terminates unless terminated exceptionally or by interrupt.

The entry point for your application. Will be called by the runtime when the process is started. If the underlying runtime supports it, any arguments passed to the process will be made available in the args parameter. The numeric value within the resulting ExitCode will be used as the exit code when the process terminates unless terminated exceptionally or by interrupt.

Value parameters:
args

The arguments passed to the process, if supported by the underlying runtime. For example, java com.company.MyApp --foo --bar baz or node com-mycompany-fastopt.js --foo --bar baz would each result in List("--foo", "--bar", "baz").

See also:

IOApp.Simple!.run:cats\.effect\.IO[Unit]*

Definition Classes
IOApp
def validateInex(inex: Option[IncludeExclude]): ValidatedNel[ValidationError, NonEmptyList[EOAnalyzer]]

Inherited methods

final def main(args: Array[String]): Unit
Inherited from:
IOApp