mirror of
https://github.com/alibaba/anyproxy.git
synced 2025-04-24 16:51:29 +00:00
10 lines
163 B
JavaScript
10 lines
163 B
JavaScript
//rule scheme :
|
|
|
|
module.exports = {
|
|
|
|
pauseBeforeSendingResponse : function(req,res){
|
|
//delay all the response for 1500ms
|
|
return 1500;
|
|
}
|
|
|
|
}; |