UNPKG

mogwai

Version:

Object-to-graph mapper for Node.js using Gremlin in Mongoose style (very alpha work)

14 lines (11 loc) 230 B
module.exports = Client = (function () { /** * The main abstract Client class. * * @param {Mogwai} mogwai - An instance of Mogwai */ function Client(mogwai) { this.mogwai = mogwai; } return Client; })();