gun/lib/server.js
Jesse Gibson e36e78f532 Isolate websocket logic
WebSocket logic has it's own folder now, `wsp`.
2016-11-10 10:09:18 -07:00

10 lines
340 B
JavaScript

;(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!")
//require('./s3');
require('./wsp/server');
require('./file');
module.exports = Gun;
}());