mirror of
https://github.com/etesync/android
synced 2024-12-02 04:48:35 +00:00
13 lines
311 B
JavaScript
13 lines
311 B
JavaScript
|
var RoboHydraHeadFilesystem = require("robohydra").heads.RoboHydraHeadFilesystem;
|
||
|
|
||
|
exports.getBodyParts = function(conf) {
|
||
|
return {
|
||
|
heads: [
|
||
|
new RoboHydraHeadFilesystem({
|
||
|
mountPath: '/assets/',
|
||
|
documentRoot: '../assets'
|
||
|
})
|
||
|
]
|
||
|
};
|
||
|
};
|