UNPKG
md_nosql_db_sdk
Version:
latest (1.0.0)
1.0.0
sdk for communicating to the nosql server
md_nosql_db_sdk
/
index.js
11 lines
(9 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
//Import all scripts
import
connector
from
'modules/connector.mjs'
class
nosqlDb
{
constructor
(
){
if
(noSqlDbConfig !=
undefined
){
this
.
dbConnector
=
new
connector
(noSqlDbConfig.
dbUrl
, noSqlDbConfig.
apiKey
, noSqlDbConfig.
apiPass
) } } }