12 lines
207 B
TypeScript
12 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;
|