Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
fix: object export
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Shaw committed Dec 11, 2019
1 parent 1f3b26d commit 77de310
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/core/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,20 @@
exports.add = require('./add')
exports.config = require('./config')
exports.init = require('./init')
exports.object = require('./object')
exports.object = {
data: require('./object/data'),
get: require('./object/get'),
links: require('./object/links'),
new: require('./object/new'),
patch: {
addLink: require('./object/patch/add-link'),
appendData: require('./object/patch/append-data'),
rmLink: require('./object/patch/rm-link'),
setData: require('./object/patch/set-data')
},
put: require('./object/put'),
stat: require('./object/stat')
}
exports.start = require('./start')
exports.stop = require('./stop')

Expand Down

0 comments on commit 77de310

Please sign in to comment.