We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e5b748 commit f1075ecCopy full SHA for f1075ec
docs/openapi-metadata/examples.md
@@ -15,8 +15,9 @@ import { generateScalarUI } from "openapi-metadata/ui";
15
16
const app = express();
17
18
+const document = await generateDocument(yourConfiguration);
19
+
20
app.get("/api", async (req, res) => {
- const document = await generateDocument(yourConfiguration);
21
res.send(JSON.stringify(document));
22
});
23
@@ -35,8 +36,9 @@ import { generateScalarUI } from "openapi-metadata/ui";
35
36
37
const app = Fastify();
38
39
40
41
app.get("/api", async () => {
42
return document;
43
44
docs/openapi-metadata/integrations.md
0 commit comments