Skip to content

Instantly share code, notes, and snippets.

@1gravity
Created April 20, 2021 18:10
Show Gist options
  • Save 1gravity/93033b74cad43a5aa1e6176fc8d1ae7c to your computer and use it in GitHub Desktop.
Save 1gravity/93033b74cad43a5aa1e6176fc8d1ae7c to your computer and use it in GitHub Desktop.
openapi_nodejs
/**
* @openapi
* /:
* get:
* description: Welcome to swagger-jsdoc!
* responses:
* 200:
* description: Returns a mysterious string.
*/
app.get('/', (req, res) => {
res.send('Hello World!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment