Upload libraries/helpers/src/swagger/load.swagger.ts with huggingface_hub
Browse files
libraries/helpers/src/swagger/load.swagger.ts
CHANGED
|
@@ -9,5 +9,6 @@ export const loadSwagger = (app: INestApplication) => {
|
|
| 9 |
.build();
|
| 10 |
|
| 11 |
const document = SwaggerModule.createDocument(app, config);
|
|
|
|
| 12 |
SwaggerModule.setup('docs', app, document);
|
| 13 |
};
|
|
|
|
| 9 |
.build();
|
| 10 |
|
| 11 |
const document = SwaggerModule.createDocument(app, config);
|
| 12 |
+
SwaggerModule.setup('api-docs', app, document);
|
| 13 |
SwaggerModule.setup('docs', app, document);
|
| 14 |
};
|