2021-08-19 12:55:45 +00:00
|
|
|
import define from '../define';
|
2021-01-09 00:25:27 +00:00
|
|
|
|
|
|
|
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,
|
|
|
|
},
|
2021-12-09 14:58:30 +00:00
|
|
|
},
|
|
|
|
},
|
2021-01-09 00:25:27 +00:00
|
|
|
};
|
|
|
|
|
2022-01-02 17:12:50 +00:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2021-01-09 00:25:27 +00:00
|
|
|
export default define(meta, async () => {
|
|
|
|
return {
|
|
|
|
pong: Date.now(),
|
|
|
|
};
|
|
|
|
});
|