aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/pdsuidomain/formats/json/sprayformats/documenttype.scala
blob: 7ec6ef58a7eb2c518116e36b32d8a67961a72e52 (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.DocumentType

object documenttype {
  import DefaultJsonProtocol._
  import common._

  implicit val format: RootJsonFormat[DocumentType] = jsonFormat2(DocumentType.apply)

}