feat: create route to return title information

Summary:

Test Plan:
This commit is contained in:
2024-05-15 23:03:08 -04:00
parent 695a1bb4cd
commit 68c082493e
18 changed files with 1367 additions and 4 deletions

View File

@@ -7,6 +7,9 @@ const app = new OpenAPIHono();
const route = createRoute({
method: "get",
path: "/",
summary: "Health check",
operationId: "healthCheck",
tags: ["aniplay"],
responses: {
200: {
content: {
@@ -14,7 +17,7 @@ const route = createRoute({
schema: SuccessResponseSchema(),
},
},
description: "Retrieve the user",
description: "Server is up and running!",
},
},
});