mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
9 lines
258 B
TypeScript
9 lines
258 B
TypeScript
import { FastifyInstance } from 'fastify';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
export async function auth0Routes(fastify: FastifyInstance) {
|
|
fastify.get('/oauth/token', async (_request, _reply) => {
|
|
return { a: 'b' };
|
|
});
|
|
}
|