mirror of
https://github.com/zhigang1992/deployd.git
synced 2026-05-13 04:00:35 +08:00
9 lines
189 B
JavaScript
9 lines
189 B
JavaScript
var Server = require('./lib/server');
|
|
|
|
/**
|
|
* export a simple function that constructs a dpd server based on a config
|
|
*/
|
|
|
|
module.exports = function (config) {
|
|
return new Server(config);
|
|
} |