UNPKG
mogwai
Version:
latest (0.2.6)
v0.1.0 (0.2.6)
0.2.6
0.2.5
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
0.0.1
0.0.0
Object-to-graph mapper for Node.js using Gremlin in Mongoose style (very alpha work)
gulthor/mogwai
mogwai
/
src
/
client.js
14 lines
(11 loc)
•
230 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module
.
exports
=
Client
= (
function
(
) {
/** * The main abstract Client class. * *
@param
{
Mogwai
}
mogwai
- An instance of Mogwai */
function
Client
(
mogwai
) {
this
.
mogwai
= mogwai; }
return
Client
; })();