forked from loafle/openapi-generator-original
better code format for nodejs server (#4411)
This commit is contained in:
@@ -1,11 +1,9 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var url = require('url');
|
var url = require('url');
|
||||||
|
|
||||||
{{#operations}}
|
{{#operations}}
|
||||||
|
|
||||||
var {{classname}} = require('./{{classname}}Service');
|
var {{classname}} = require('./{{classname}}Service');
|
||||||
|
|
||||||
{{#operation}}
|
{{#operation}}
|
||||||
|
|
||||||
module.exports.{{nickname}} = function {{nickname}} (req, res, next) {
|
module.exports.{{nickname}} = function {{nickname}} (req, res, next) {
|
||||||
|
|||||||
@@ -2,26 +2,40 @@
|
|||||||
|
|
||||||
{{#operations}}
|
{{#operations}}
|
||||||
{{#operation}}
|
{{#operation}}
|
||||||
exports.{{nickname}} = function(args, res, next) {
|
exports.{{{operationId}}} = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
{{#summary}}
|
||||||
{{#allParams}}* {{paramName}} ({{dataType}})
|
* {{{summary}}}
|
||||||
{{/allParams}}**/
|
{{/summary}}
|
||||||
{{^returnType}}// no response value expected for this operation
|
{{#notes}}
|
||||||
|
* {{{notes}}}
|
||||||
|
{{/notes}}
|
||||||
|
*
|
||||||
|
{{#allParams}}
|
||||||
|
* {{paramName}} {{{dataType}}} {{{description}}}{{^required}} (optional){{/required}}
|
||||||
|
{{/allParams}}
|
||||||
|
{{^returnType}}
|
||||||
|
* no response value expected for this operation
|
||||||
{{/returnType}}
|
{{/returnType}}
|
||||||
|
{{#returnType}}
|
||||||
|
* returns {{{returnType}}}
|
||||||
|
{{/returnType}}
|
||||||
|
**/
|
||||||
{{#returnType}}
|
{{#returnType}}
|
||||||
var examples = {};
|
var examples = {};
|
||||||
{{#examples}}examples['{{contentType}}'] = {{{example}}};
|
{{#examples}}
|
||||||
|
examples['{{contentType}}'] = {{{example}}};
|
||||||
{{/examples}}
|
{{/examples}}
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
{{/returnType}}
|
{{/returnType}}
|
||||||
{{^returnType}}res.end();{{/returnType}}
|
{{^returnType}}
|
||||||
|
res.end();
|
||||||
|
{{/returnType}}
|
||||||
}
|
}
|
||||||
|
|
||||||
{{/operation}}
|
{{/operation}}
|
||||||
|
|||||||
@@ -2,10 +2,8 @@
|
|||||||
|
|
||||||
var url = require('url');
|
var url = require('url');
|
||||||
|
|
||||||
|
|
||||||
var Pet = require('./PetService');
|
var Pet = require('./PetService');
|
||||||
|
|
||||||
|
|
||||||
module.exports.addPet = function addPet (req, res, next) {
|
module.exports.addPet = function addPet (req, res, next) {
|
||||||
Pet.addPet(req.swagger.params, res, next);
|
Pet.addPet(req.swagger.params, res, next);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,27 +2,34 @@
|
|||||||
|
|
||||||
exports.addPet = function(args, res, next) {
|
exports.addPet = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Add a new pet to the store
|
||||||
* body (Pet)
|
*
|
||||||
|
*
|
||||||
|
* body Pet Pet object that needs to be added to the store
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.deletePet = function(args, res, next) {
|
exports.deletePet = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Deletes a pet
|
||||||
* petId (Long)
|
*
|
||||||
* api_key (String)
|
*
|
||||||
|
* petId Long Pet id to delete
|
||||||
|
* api_key String (optional)
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.findPetsByStatus = function(args, res, next) {
|
exports.findPetsByStatus = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Finds Pets by status
|
||||||
* status (List)
|
* Multiple status values can be provided with comma separated strings
|
||||||
|
*
|
||||||
|
* status List Status values that need to be considered for filter
|
||||||
|
* returns List
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = [ {
|
examples['application/json'] = [ {
|
||||||
@@ -39,20 +46,21 @@ exports.findPetsByStatus = function(args, res, next) {
|
|||||||
"name" : "doggie",
|
"name" : "doggie",
|
||||||
"photoUrls" : [ "aeiou" ]
|
"photoUrls" : [ "aeiou" ]
|
||||||
} ];
|
} ];
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.findPetsByTags = function(args, res, next) {
|
exports.findPetsByTags = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Finds Pets by tags
|
||||||
* tags (List)
|
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||||
|
*
|
||||||
|
* tags List Tags to filter by
|
||||||
|
* returns List
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = [ {
|
examples['application/json'] = [ {
|
||||||
@@ -69,20 +77,21 @@ exports.findPetsByTags = function(args, res, next) {
|
|||||||
"name" : "doggie",
|
"name" : "doggie",
|
||||||
"photoUrls" : [ "aeiou" ]
|
"photoUrls" : [ "aeiou" ]
|
||||||
} ];
|
} ];
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.getPetById = function(args, res, next) {
|
exports.getPetById = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Find pet by ID
|
||||||
* petId (Long)
|
* Returns a single pet
|
||||||
|
*
|
||||||
|
* petId Long ID of pet to return
|
||||||
|
* returns Pet
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = {
|
examples['application/json'] = {
|
||||||
@@ -99,42 +108,47 @@ exports.getPetById = function(args, res, next) {
|
|||||||
"name" : "doggie",
|
"name" : "doggie",
|
||||||
"photoUrls" : [ "aeiou" ]
|
"photoUrls" : [ "aeiou" ]
|
||||||
};
|
};
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.updatePet = function(args, res, next) {
|
exports.updatePet = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Update an existing pet
|
||||||
* body (Pet)
|
*
|
||||||
|
*
|
||||||
|
* body Pet Pet object that needs to be added to the store
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.updatePetWithForm = function(args, res, next) {
|
exports.updatePetWithForm = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Updates a pet in the store with form data
|
||||||
* petId (Long)
|
*
|
||||||
* name (String)
|
*
|
||||||
* status (String)
|
* petId Long ID of pet that needs to be updated
|
||||||
|
* name String Updated name of the pet (optional)
|
||||||
|
* status String Updated status of the pet (optional)
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.uploadFile = function(args, res, next) {
|
exports.uploadFile = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* uploads an image
|
||||||
* petId (Long)
|
*
|
||||||
* additionalMetadata (String)
|
*
|
||||||
* file (file)
|
* petId Long ID of pet to update
|
||||||
|
* additionalMetadata String Additional data to pass to server (optional)
|
||||||
|
* file File file to upload (optional)
|
||||||
|
* returns ApiResponse
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = {
|
examples['application/json'] = {
|
||||||
@@ -142,13 +156,11 @@ exports.uploadFile = function(args, res, next) {
|
|||||||
"code" : 123,
|
"code" : 123,
|
||||||
"type" : "aeiou"
|
"type" : "aeiou"
|
||||||
};
|
};
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,8 @@
|
|||||||
|
|
||||||
var url = require('url');
|
var url = require('url');
|
||||||
|
|
||||||
|
|
||||||
var Store = require('./StoreService');
|
var Store = require('./StoreService');
|
||||||
|
|
||||||
|
|
||||||
module.exports.deleteOrder = function deleteOrder (req, res, next) {
|
module.exports.deleteOrder = function deleteOrder (req, res, next) {
|
||||||
Store.deleteOrder(req.swagger.params, res, next);
|
Store.deleteOrder(req.swagger.params, res, next);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,35 +2,41 @@
|
|||||||
|
|
||||||
exports.deleteOrder = function(args, res, next) {
|
exports.deleteOrder = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Delete purchase order by ID
|
||||||
* orderId (String)
|
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||||
|
*
|
||||||
|
* orderId String ID of the order that needs to be deleted
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.getInventory = function(args, res, next) {
|
exports.getInventory = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Returns pet inventories by status
|
||||||
|
* Returns a map of status codes to quantities
|
||||||
|
*
|
||||||
|
* returns Map
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = {
|
examples['application/json'] = {
|
||||||
"key" : 123
|
"key" : 123
|
||||||
};
|
};
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.getOrderById = function(args, res, next) {
|
exports.getOrderById = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Find purchase order by ID
|
||||||
* orderId (Long)
|
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
|
||||||
|
*
|
||||||
|
* orderId Long ID of pet that needs to be fetched
|
||||||
|
* returns Order
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = {
|
examples['application/json'] = {
|
||||||
@@ -41,20 +47,21 @@ exports.getOrderById = function(args, res, next) {
|
|||||||
"quantity" : 123,
|
"quantity" : 123,
|
||||||
"shipDate" : "2000-01-23T04:56:07.000+00:00"
|
"shipDate" : "2000-01-23T04:56:07.000+00:00"
|
||||||
};
|
};
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.placeOrder = function(args, res, next) {
|
exports.placeOrder = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Place an order for a pet
|
||||||
* body (Order)
|
*
|
||||||
|
*
|
||||||
|
* body Order order placed for purchasing the pet
|
||||||
|
* returns Order
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = {
|
examples['application/json'] = {
|
||||||
@@ -65,13 +72,11 @@ exports.placeOrder = function(args, res, next) {
|
|||||||
"quantity" : 123,
|
"quantity" : 123,
|
||||||
"shipDate" : "2000-01-23T04:56:07.000+00:00"
|
"shipDate" : "2000-01-23T04:56:07.000+00:00"
|
||||||
};
|
};
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,8 @@
|
|||||||
|
|
||||||
var url = require('url');
|
var url = require('url');
|
||||||
|
|
||||||
|
|
||||||
var User = require('./UserService');
|
var User = require('./UserService');
|
||||||
|
|
||||||
|
|
||||||
module.exports.createUser = function createUser (req, res, next) {
|
module.exports.createUser = function createUser (req, res, next) {
|
||||||
User.createUser(req.swagger.params, res, next);
|
User.createUser(req.swagger.params, res, next);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,44 +2,55 @@
|
|||||||
|
|
||||||
exports.createUser = function(args, res, next) {
|
exports.createUser = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Create user
|
||||||
* body (User)
|
* This can only be done by the logged in user.
|
||||||
|
*
|
||||||
|
* body User Created user object
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.createUsersWithArrayInput = function(args, res, next) {
|
exports.createUsersWithArrayInput = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Creates list of users with given input array
|
||||||
* body (List)
|
*
|
||||||
|
*
|
||||||
|
* body List List of user object
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.createUsersWithListInput = function(args, res, next) {
|
exports.createUsersWithListInput = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Creates list of users with given input array
|
||||||
* body (List)
|
*
|
||||||
|
*
|
||||||
|
* body List List of user object
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.deleteUser = function(args, res, next) {
|
exports.deleteUser = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Delete user
|
||||||
* username (String)
|
* This can only be done by the logged in user.
|
||||||
|
*
|
||||||
|
* username String The name that needs to be deleted
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.getUserByName = function(args, res, next) {
|
exports.getUserByName = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Get user by user name
|
||||||
* username (String)
|
*
|
||||||
|
*
|
||||||
|
* username String The name that needs to be fetched. Use user1 for testing.
|
||||||
|
* returns User
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = {
|
examples['application/json'] = {
|
||||||
@@ -52,49 +63,52 @@ exports.getUserByName = function(args, res, next) {
|
|||||||
"firstName" : "aeiou",
|
"firstName" : "aeiou",
|
||||||
"password" : "aeiou"
|
"password" : "aeiou"
|
||||||
};
|
};
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.loginUser = function(args, res, next) {
|
exports.loginUser = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Logs user into the system
|
||||||
* username (String)
|
*
|
||||||
* password (String)
|
*
|
||||||
|
* username String The user name for login
|
||||||
|
* password String The password for login in clear text
|
||||||
|
* returns String
|
||||||
**/
|
**/
|
||||||
var examples = {};
|
var examples = {};
|
||||||
examples['application/json'] = "aeiou";
|
examples['application/json'] = "aeiou";
|
||||||
if(Object.keys(examples).length > 0) {
|
if (Object.keys(examples).length > 0) {
|
||||||
res.setHeader('Content-Type', 'application/json');
|
res.setHeader('Content-Type', 'application/json');
|
||||||
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
res.end(JSON.stringify(examples[Object.keys(examples)[0]] || {}, null, 2));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.logoutUser = function(args, res, next) {
|
exports.logoutUser = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Logs out current logged in user session
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.updateUser = function(args, res, next) {
|
exports.updateUser = function(args, res, next) {
|
||||||
/**
|
/**
|
||||||
* parameters expected in the args:
|
* Updated user
|
||||||
* username (String)
|
* This can only be done by the logged in user.
|
||||||
* body (User)
|
*
|
||||||
|
* username String name that need to be deleted
|
||||||
|
* body User Updated user object
|
||||||
|
* no response value expected for this operation
|
||||||
**/
|
**/
|
||||||
// no response value expected for this operation
|
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user