This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
// Tested with Node.js v4.3.2 | |
"use strict"; | |
const spawn = require('child_process').spawn; | |
function createPromise(p) { | |
return new Promise( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package npg_qc_viewer::Controller::Mqc::Outcome; | |
use Moose; | |
use MooseX::Types::Moose qw/Int/; | |
BEGIN { extends 'Catalyst::Controller::REST'; } | |
our $VERSION = '0'; | |
__PACKAGE__->config(default => 'application/json'); |