diff --git a/src/storage/caas.js b/src/storage/caas.js index c211059b8..2d1051da8 100644 --- a/src/storage/caas.js +++ b/src/storage/caas.js @@ -1,13 +1,12 @@ 'use strict'; exports = module.exports = { + getBackupDetails: getBackupDetails, + getAllPaged: getAllPaged, + getRestoreUrl: getRestoreUrl, - copyObject: copyObject, - - getBackupDetails: getBackupDetails, - - getAllPaged: getAllPaged + copyObject: copyObject }; var assert = require('assert'), diff --git a/src/storage/filesystem.js b/src/storage/filesystem.js index e518e081b..b0a983443 100644 --- a/src/storage/filesystem.js +++ b/src/storage/filesystem.js @@ -1,12 +1,12 @@ 'use strict'; exports = module.exports = { - getRestoreUrl: getRestoreUrl, - - copyObject: copyObject, + getBackupDetails: getBackupDetails, getAllPaged: getAllPaged, - getBackupDetails: getBackupDetails + getRestoreUrl: getRestoreUrl, + + copyObject: copyObject }; var assert = require('assert'); diff --git a/src/storage/s3.js b/src/storage/s3.js index 98e0326c3..a9ecd39d9 100644 --- a/src/storage/s3.js +++ b/src/storage/s3.js @@ -1,12 +1,12 @@ 'use strict'; exports = module.exports = { - getRestoreUrl: getRestoreUrl, - - copyObject: copyObject, + getBackupDetails: getBackupDetails, getAllPaged: getAllPaged, - getBackupDetails: getBackupDetails + getRestoreUrl: getRestoreUrl, + + copyObject: copyObject }; var assert = require('assert'),