YesPlayMusic/packages/server/src/routes/root.ts
2023-01-24 16:29:33 +08:00

9 lines
235 B
TypeScript

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