mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
11 lines
248 B
TypeScript
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();
|
|
}
|