mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-17 06:20:23 +00:00
34 lines
635 B
JavaScript
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);
|