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

bridge.Hook.scala Maven / Gradle / Ivy

package bridge

sealed trait Hook {
  val requestString: String
}

object Hook {

  case object Success extends Hook {
    val requestString = "@hook_success"
  }

  case object Failure extends Hook {
    val requestString = "@hook_failure"
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy