Initial commit

Esse commit está contido em:
Laurent Eschenauer
2013-06-04 21:36:25 +02:00
commit c5b4b86720
5 arquivos alterados com 182 adições e 0 exclusões
+9
Ver Arquivo
@@ -0,0 +1,9 @@
var autonomy = exports;
exports.StateEstimator = require('./lib/StateEstimator');
exports.estimateState = function(client, options) {
var estimator = new autonomy.StateEstimator(client, options);
return estimator;
}