-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
I assume you need to pass the entire API as a single .yaml file.
Would be nice to be able to pass it as an object as well (I did in my fork).
Also would be nice to be able to gradually build up the API per main domain or service. I guess the objects could just be merged into one final API object?
const SwaggerBank = require('swaggerbank');
const api = new SwaggerBank.API()
for (let service of services) {
api.add(service.docs);
}
api.validateAPI()
.then( () => {
api.setupMountebankImposter(3000);
})What do you think?
Metadata
Metadata
Assignees
Labels
No labels