Files
gun/lib/server.js
Mark Nadal 77d71a0c94 pushing!
2017-01-27 04:58:16 -08:00

14 lines
338 B
JavaScript

;(function(){
var Gun = require('../gun');
//require('./s3');
require('./wsp/server');
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('NOTE: S3 driver not updated to 0.5 yet!');
module.exports = Gun;
}());