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

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

object hypothesis {
  import DefaultJsonProtocol._
  import common._

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

}