* Add CopyrightHeader support for sbt-boilerplate plugin. * Add CopyrightHeader support for `*.proto` files. * Add regex match for both `–` and `-` for CopyrightHeader. * Add CopyrightHeader support for sbt build files. * Update copyright from 2018 to 2019.
12 lines
330 B
Scala
12 lines
330 B
Scala
/*
|
|
* Copyright (C) 2018-2019 Lightbend Inc. <https://www.lightbend.com>
|
|
*/
|
|
|
|
package scala.docs.cluster
|
|
|
|
//#messages
|
|
final case class TransformationJob(text: String)
|
|
final case class TransformationResult(text: String)
|
|
final case class JobFailed(reason: String, job: TransformationJob)
|
|
case object BackendRegistration
|
|
//#messages
|