1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-15 15:53:55 +00:00

1. Updated service-manager to support dependencies from Buffer

2. Updated service-host to have a 'create' method
This commit is contained in:
Bryan Roe
2019-04-09 14:47:49 -07:00
parent 61f768d88b
commit 9aae4c7508
3 changed files with 43 additions and 21 deletions

View File

@@ -315,4 +315,8 @@ function serviceHost(serviceName)
};
}
module.exports = serviceHost;
module.exports = serviceHost;
module.exports.create = function create(options)
{
return (new serviceHost(options));
};