1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/lib/services/rest/routes/ping.ts
2020-11-05 16:58:23 +00:00

11 lines
248 B
TypeScript

import { Request } from '../Api';
import { ErrorMethodNotAllowed } from '../utils/errors';
export default async function(request:Request) {
if (request.method === 'GET') {
return 'JoplinClipperServer';
}
throw new ErrorMethodNotAllowed();
}