mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-08-05 16:49:17 +00:00
28 lines
424 B
TypeScript
28 lines
424 B
TypeScript
![]() |
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(),
|
||
|
};
|
||
|
});
|