Skip to content

Commit

Permalink
relocate files
Browse files Browse the repository at this point in the history
  • Loading branch information
iloire committed Aug 22, 2012
1 parent 9f01315 commit 7b7f815
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/notifications/email/email.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var postmark = require ('./postmark');
var config = require ('../config/general');
var config = require ('../../../config/general');

exports.sendEmail = function (to_list, subject, body, callback){
postmark.sendEmail({
Expand Down
4 changes: 3 additions & 1 deletion lib/watchmen.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var postmark = require('./postmark');
var postmark = require('./notifications/email/postmark');
var events = require('events');

function WatchMen(services, storage, options){
Expand Down Expand Up @@ -172,6 +172,8 @@ WatchMen.prototype.start = function (){
launch(service);
}
});

console.log('watchmen monitor started.');
};

/*-----------------------
Expand Down

0 comments on commit 7b7f815

Please sign in to comment.