com.github.pedrovgs.kuronometer.KuronometerResults.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kuronometer-core Show documentation
Show all versions of kuronometer-core Show documentation
Gradle Plugin used to measure build times.
package com.github.pedrovgs.kuronometer
object KuronometerResults {
type KuronometerResult[A] = Either[KuronometerError, A]
sealed trait KuronometerError
case object ConnectionError extends KuronometerError
case object UnknownError extends KuronometerError
}