增加支持ping

This commit is contained in:
Vinlic 2024-03-21 11:52:31 +08:00
parent 888455b56a
commit 97ef58f554
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"
}
}