Skip to content

Instantly share code, notes, and snippets.

@sidneyroberto
Created September 27, 2023 23:38
Show Gist options
  • Save sidneyroberto/f7fa9f79e99b470051dac0f4cfbd09b7 to your computer and use it in GitHub Desktop.
Save sidneyroberto/f7fa9f79e99b470051dac0f4cfbd09b7 to your computer and use it in GitHub Desktop.
export const swaggerOptions = {
definition: {
openapi: '3.0.1',
info: {
title: 'Tasks API',
version: '0.1.0',
description: 'API para estudo de documentação de API',
license: {
name: 'MIT',
url: 'https://spdx.org/licenses/MIT.html',
},
contact: {
name: 'Sidney Sousa',
url: 'https://github.com/sidneyroberto',
email: 'sidney.sousa@ifms.edu.br',
},
},
servers: [
{
url: 'http://localhost:3001',
},
],
},
apis: ['**/*.yml'],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment