@@ -21,7 +21,9 @@ route.patch("/:id", async c => {
.set(body)
.where("id", "=", Number(c.req.param("id")))
.executeTakeFirstOrThrow()
- return c.text("")
+ return c.json({
+ message: "OK"
+ })
})
route.get("/", async c => {