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

libretto.scaletto.StarterApp.scala Maven / Gradle / Ivy

The newest version!
package libretto.scaletto

import libretto.scaletto.StarterKit.runAsync
import scala.concurrent.Await
import scala.concurrent.duration.Duration

abstract class StarterApp extends StarterAppBase {
  def blueprint: Done -⚬ Done

  def main(args: Array[String]): Unit = {
    Await.result(runAsync(blueprint), Duration.Inf)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy