- generic `server.serve` config - new demo workspace - new basic template - updated readme Reviewed-on: https://git.ayo.run/ayo/mcfly/pulls/3 Co-authored-by: Ayo <ayo@ayco.io> Co-committed-by: Ayo <ayo@ayco.io>
6 lines
164 B
JavaScript
6 lines
164 B
JavaScript
export default async (fastify) => {
|
|
fastify.get('/', async function (request, reply) {
|
|
console.log({ request, reply })
|
|
return 'This is an example'
|
|
})
|
|
}
|