Skip to content

Instantly share code, notes, and snippets.

@PavelPolyakov
Created January 19, 2019 06:56
Show Gist options
  • Save PavelPolyakov/0290050546c26dfbd8d4a6d4a30ede4d to your computer and use it in GitHub Desktop.
Save PavelPolyakov/0290050546c26dfbd8d4a6d4a30ede4d to your computer and use it in GitHub Desktop.
import * as fp from "fastify-plugin";
export default fp(async (server, opts, next) => {
server.route({
url: "/status",
logLevel: "warn",
method: ["GET", "HEAD"],
handler: async (request, reply) => {
return reply.send({ date: new Date(), works: true });
}
});
next();
});
@PavelPolyakov
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment