import { FastifyPluginAsync } from 'fastify' const root: FastifyPluginAsync = async (fastify, opts): Promise => { fastify.get('/', async (request, reply) => { return 'R3PLAY server is running!' }) } export default root