UNPKG
google-datastore
Version:
latest (0.0.2)
0.0.2
Object adapter to the Google Datastore
github.com/karpachev/datastore
karpachev/datastore
google-datastore
/
lib
/
datastore.js
11 lines
(7 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
datastore =
require
(
'@google-cloud/datastore'
);
const
Promise
=
require
(
'bluebird'
);
function
Datastore
(
options
) {
this
.
_options
= options;
this
.
_datastoreClient
=
datastore
(options); }
module
.
exports
=
Datastore