authsrv/src/routes/well-known/auth-node.ts

12 lines
207 B
TypeScript
Raw Normal View History

2023-07-22 17:54:32 +02:00
import { RouteOptions } from "fastify";
const route: RouteOptions = {
method: "GET",
url: "/.well-known/longmont/auth-node",
handler: async (_, res) => {
res.status(204);
},
};
export default route;