From 96c8f96c52b98a530d9e0944d1bf3e1bbf992b10 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Fri, 16 Sep 2016 10:59:17 +0200 Subject: [PATCH] Group exports --- src/storage/caas.js | 9 ++++----- src/storage/filesystem.js | 8 ++++---- src/storage/s3.js | 8 ++++---- 3 files changed, 12 insertions(+), 13 deletions(-) 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'),