Advertisement
Guest User

Untitled

a guest
Oct 8th, 2015
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.36 KB | None | 0 0
  1. Это в менеджере
  2.  
  3.  
  4.   case class AddContest(beginTime: DateTime, endTime: DateTime) extends ApiRequest with Pagination with ContestRequest
  5.   object AddContest {
  6.     implicit val _ = jsonFormat2(AddContest.apply)
  7.   }
  8.  
  9. это в спрейсервисе
  10.  
  11.      (path("add_contest") & post) {
  12.         perRequest[AddContest, SuccessResponse]
  13.       }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement