zordius/webtasks

View on GitHub
page/hello.js

Summary

Maintainability
A
0 mins
Test Coverage
/*jslint node: true */                                                                                  
'use strict';

module.exports = function () {
    return this.task({
        title: 'Good!',
        description: 'Hello World'
    });
};