Commit ff7e8b3fc7e7bbc83d0f6754792892826d0cb3fe

Authored by Cassio Cabral
1 parent f2f8f0cf
Exists in master and in 1 other branch devel

create module to use functions related to the queue

Showing 1 changed file with 8 additions and 0 deletions   Show diff stats
helpers/queue.js 0 → 100644
... ... @@ -0,0 +1,8 @@
  1 +var exec = require('child_process').exec, child;
  2 +
  3 +exports.exec_command_line = function (command_line, callback) {
  4 + child = exec(command_line, function(err, stdout, stderr) {
  5 + // [stdout] = vlibras-core output
  6 + });
  7 + callback();
  8 +};
... ...