You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 17, 2025. It is now read-only.
The custom routes are not longer working with the latest update
'use strict';varpath=require('path');varhttp=require('http');varoas3Tools=require('oas3-tools');varserverPort=8080;// swaggerRouter configurationvaroptions={routing: {controllers: path.join(__dirname,'./controllers')},};varexpressAppConfig=oas3Tools.expressAppConfig(path.join(__dirname,'api/openapi.yaml'),options);varapp=expressAppConfig.getApp();/** THIS CUSTOM ROUTE IS NOT LONGER ACCESSIBLE **/app.get('/foo',(req,res)=>{res.send('foo')})// Initialize the Swagger middlewarehttp.createServer(app).listen(serverPort,function(){console.log('Your server is listening on port %d (http://localhost:%d)',serverPort,serverPort);console.log('Swagger-ui is available on http://localhost:%d/docs',serverPort);});