mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 05:08:04 +00:00
9 lines
235 B
TypeScript
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
|