webapi-eca/js-coffee/server.js
2013-11-19 14:53:36 +01:00

34 lines
635 B
JavaScript

// Generated by CoffeeScript 1.6.3
/*
Rules Server
============
This is the main module that is used to run the whole server:
node server [log_type http_port]
Valid `log_type`'s are:
- `0`: standard I/O output (default)
- `1`: log file (server.log)
- `2`: silent
`http_port` can be set to use another port, than defined in the
[config](config.html) file, to listen to, e.g. used by the test suite.
*/
(function() {
var root;
root = typeof exports !== "undefined" && exports !== null ? exports : this;
root.foo = function() {
return 'Hello World';
};
/*
My comments will show up here
*/
}).call(this);