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