Skip to content

Commit a68bd27

Browse files
committed
remove redundant status field on root route
1 parent 04f2b2c commit a68bd27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/root.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ const VERSION = "3.2.0"
44

55
export default async function (fastify, opts) {
66
fastify.get("/", async function (request, reply) {
7-
return { status: "ok", version: VERSION };
7+
return { version: VERSION };
88
});
99
}

0 commit comments

Comments
 (0)