mirror of
https://github.com/amark/gun.git
synced 2025-05-19 13:26:48 +00:00
13 lines
337 B
JavaScript
13 lines
337 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;
|
|
}()); |