添加health check api

This commit is contained in:
peanut996 2024-03-20 13:42:58 +08:00
parent 7cbebf780c
commit 4fe9b654f5
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,7 @@
import chat from "./chat.ts";
import ping from "./ping.ts";
export default [
chat
chat,
ping
];

6
src/api/routes/ping.ts Normal file
View File

@ -0,0 +1,6 @@
export default {
prefix: '/ping',
get: {
'': async () => "pong"
}
}