aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis.scala')
-rw-r--r--src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis.scala b/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis.scala
new file mode 100644
index 0000000..c5f6141
--- /dev/null
+++ b/src/main/scala/xyz/driver/pdsuidomain/formats/json/hypothesis.scala
@@ -0,0 +1,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)
+
+}