misskey/packages/backend/src/server/api/endpoints/ping.ts
2024-02-13 15:59:27 +00:00

43 lines
779 B
TypeScript

/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { Injectable } from '@nestjs/common';
import { Endpoint } from '@/server/api/endpoint-base.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;
@Injectable()
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
constructor(
) {
super(meta, paramDef, async () => {
return {
pong: Date.now(),
};
});
}
}