This repository has been archived on 2024-01-26. You can view files and clone it, but cannot push or open issues or pull requests.
termintool/termine.js

19 lines
590 B
JavaScript
Raw Normal View History

/*
* ----------------------------------------------------------------------------
* "THE VODKA-WARE LICENSE" (Revision 42):
* <tim@bandenkrieg.hacked.jp> wrote this file. As long as you retain this notice you
* can do whatever you want with this stuff. If we meet some day, and you think
* this stuff is worth it, you can buy me a vodka in return. Tim Schumacher
* ----------------------------------------------------------------------------
*/
2013-01-15 22:32:31 +01:00
var
EventTool = require('./event').EventTool;
2013-01-15 22:32:31 +01:00
var et = new EventTool();
et.setupPublishers();
et.on('events',et.processEvents);
2013-01-15 22:32:31 +01:00
et.run();