UNPKG
ilorm-constants
Version:
latest (0.5.0)
0.5.0
0.4.1
0.4.0
0.3.0
0.2.0
0.1.0
Core package to use shared constants with ilorm
ilorm-constants
/
index.js
16 lines
(13 loc)
•
288 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict'
;
const
DATABASES
=
require
(
'./lib/databases'
);
const
MODEL
=
require
(
'./lib/model'
);
const
QUERY
=
require
(
'./lib/query'
);
const
SCHEMA
=
require
(
'./lib/schema'
);
const
FIELD
=
require
(
'./lib/field'
);
module
.
exports
= {
DATABASES
,
MODEL
,
QUERY
,
SCHEMA
,
FIELD
, };