mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Add ping api
This commit is contained in:
parent
710ccf093a
commit
92f16f2a90
1 changed files with 27 additions and 0 deletions
27
src/server/api/endpoints/ping.ts
Normal file
27
src/server/api/endpoints/ping.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
import define from '../define';
|
||||
|
||||
export const meta = {
|
||||
requireCredential: false as const,
|
||||
|
||||
tags: ['meta'],
|
||||
|
||||
params: {
|
||||
},
|
||||
|
||||
res: {
|
||||
type: 'object' as const,
|
||||
optional: false as const, nullable: false as const,
|
||||
properties: {
|
||||
pong: {
|
||||
type: 'number' as const,
|
||||
optional: false as const, nullable: false as const,
|
||||
},
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
export default define(meta, async () => {
|
||||
return {
|
||||
pong: Date.now(),
|
||||
};
|
||||
});
|
Loading…
Reference in a new issue