-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlocal.js
More file actions
24 lines (21 loc) · 748 Bytes
/
Copy pathlocal.js
File metadata and controls
24 lines (21 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env node
/**
* dbcopycat
* A JSON Database that saves your json data in a file. Easy and Simple to Use
*
* @author İsmail Can Karataş <https://ismailcankaratas.github.io/>
*/
const getAll = require('./operations/getAll');
const getById = require('./operations/getById');
const add = require('./operations/add');
const deleteById = require('./operations/deleteById');
const update = require('./operations/update');
const filter = require('./operations/filter');
const find = require('./operations/find');
module.exports.getAll = getAll;
module.exports.getById = getById;
module.exports.add = add;
module.exports.deleteById = deleteById;
module.exports.update = update;
module.exports.filter = filter;
module.exports.find = find;