summaryrefslogtreecommitdiff
path: root/example/formJsonPost/app/src/FormJsonPost.scala
diff options
context:
space:
mode:
Diffstat (limited to 'example/formJsonPost/app/src/FormJsonPost.scala')
-rw-r--r--example/formJsonPost/app/src/FormJsonPost.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/formJsonPost/app/src/FormJsonPost.scala b/example/formJsonPost/app/src/FormJsonPost.scala
index 3714f39..b994ac1 100644
--- a/example/formJsonPost/app/src/FormJsonPost.scala
+++ b/example/formJsonPost/app/src/FormJsonPost.scala
@@ -1,7 +1,7 @@
package app
object FormJsonPost extends cask.MainRoutes{
@cask.postJson("/json")
- def jsonEndpoint(value1: ujson.Js.Value, value2: Seq[Int]) = {
+ def jsonEndpoint(value1: ujson.Value, value2: Seq[Int]) = {
"OK " + value1 + " " + value2
}