Merge pull request #269 from PsychoLlama/0.5

Allow greeting messages to be opt-out
This commit is contained in:
Jesse Gibson 2016-11-14 17:01:49 -07:00 committed by GitHub
commit a4b64feef0

View File

@ -1,9 +1,13 @@
;(function(){
console.log("Hello wonderful person! :) I'm mark@gunDB.io, message me for help or with hatemail. I want to hear from you! <3");
var Gun = require('../gun');
console.log("TODO: MARK! UPDATE S3 DRIVER BEFORE PUBLISHING!")
;(function(){
var Gun = require('../gun');
//require('./s3');
require('./wsp/server');
require('./file');
module.exports = Gun;
require('./file');
Gun.log(
'Hello wonderful person! :)\n' +
'I\'m mark@gunDB.io, message me for help or with hatemail. ' +
'I want to hear from you! <3'
);
Gun.log('TODO: MARK! UPDATE S3 DRIVER BEFORE PUBLISHING!');
module.exports = Gun;
}());