32 lines
463 B
TypeScript
32 lines
463 B
TypeScript
import define from "../define.js";
|
|
|
|
export const meta = {
|
|
requireCredential: false,
|
|
|
|
tags: ["meta"],
|
|
|
|
res: {
|
|
type: "object",
|
|
optional: false,
|
|
nullable: false,
|
|
properties: {
|
|
pong: {
|
|
type: "number",
|
|
optional: false,
|
|
nullable: false,
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: "object",
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
export default define(meta, paramDef, async () => {
|
|
return {
|
|
pong: Date.now(),
|
|
};
|
|
});
|