mirror of
https://github.com/etesync/android
synced 2024-11-30 03:48: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'
|
|
})
|
|
]
|
|
};
|
|
};
|