aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/hypothesis.scala
blob: c05ff23d6e8b716a40fb867d8a22a964c7365c8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package xyz.driver.pdsuidomain.formats.json.sprayformats

import spray.json._
import xyz.driver.pdsuidomain.entities._

object hypothesis {
  import DefaultJsonProtocol._
  import common._

  implicit val hypothesisFormat: RootJsonFormat[Hypothesis] = jsonFormat4(Hypothesis.apply)

}