Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
/**
* @license
* Copyright Andrey Chalkin (https://github.com/L2jLiga). All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/L2jLiga/fastify-decorators/blob/master/LICENSE
*/
import { ALL, RequestHandler } from 'fastify-decorators';
@ALL({
url: '/all'
})
class AllHandler extends RequestHandler {
public async handle(): Promise {
if (this.request.body)
return {message: this.request.body.message};
else return {message: 'All fine! :)'};
}
}
export = AllHandler;