aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/studydesign.scala
blob: e801666a060daa44e21b23f3c5e10e2183bcc574 (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 studydesign {
  import DefaultJsonProtocol._
  import common._

  implicit val studyDesignFormat: RootJsonFormat[StudyDesign] = jsonFormat2(StudyDesign.apply)

}