12 lines
253 B
TypeScript
12 lines
253 B
TypeScript
import { ShortcutsResponse } from '../types';
|
|
|
|
export async function pingCommand(): Promise<ShortcutsResponse> {
|
|
return {
|
|
success: true,
|
|
message: 'The system is operational.',
|
|
data: {
|
|
timestamp: new Date().toISOString()
|
|
}
|
|
};
|
|
}
|