import {FastifyPluginAsync} from "fastify"; const example: FastifyPluginAsync = async (fastify, opts): Promise => { fastify.get('/', async function (request, reply) { return 'this is an example'; }); }; export default example;