2013-04-18 13:06:13 +02:00
|
|
|
/**
|
2013-04-18 20:57:04 +02:00
|
|
|
* Module Name: Project
|
|
|
|
* Description: Web page which shows git status and other various stats about
|
|
|
|
* the dbot.
|
2013-04-18 13:06:13 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
var project = function(dbot) {
|
2013-04-18 20:57:04 +02:00
|
|
|
// Nothing to see here go away love zuzak
|
2013-04-18 13:06:13 +02:00
|
|
|
}
|
2013-04-18 20:57:04 +02:00
|
|
|
|
2013-04-18 13:06:13 +02:00
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return new project(dbot);
|
|
|
|
}
|