authsrv/src/routes/well-known/auth-node.ts
2023-07-22 17:54:32 +02:00

11 lines
207 B
TypeScript

import { RouteOptions } from "fastify";
const route: RouteOptions = {
method: "GET",
url: "/.well-known/longmont/auth-node",
handler: async (_, res) => {
res.status(204);
},
};
export default route;