mirror of
https://github.com/etesync/android
synced 2024-12-03 05:18:27 +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'
|
||
|
})
|
||
|
]
|
||
|
};
|
||
|
};
|