You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
757 B
21 lines
757 B
/*
|
|
* Copyright (C) 1998-2019 by Northwoods Software Corporation
|
|
* All Rights Reserved.
|
|
*/
|
|
|
|
import * as GoCloudStorage from './GoCloudStorage';
|
|
import * as GoDropBox from './GoDropBox';
|
|
import * as GoGoogleDrive from './GoGoogleDrive';
|
|
import * as GoLocalStorage from './GoLocalStorage';
|
|
import * as GoNetCore from './GoNetCore';
|
|
import * as GoOneDrive from './GoOneDrive';
|
|
|
|
module.exports = {
|
|
GoLocalStorage: require('./GoLocalStorage').GoLocalStorage,
|
|
GoDropBox: require('./GoDropBox').GoDropBox,
|
|
GoGoogleDrive: require('./GoGoogleDrive').GoGoogleDrive,
|
|
GoOneDrive: require('./GoOneDrive').GoOneDrive,
|
|
GoNetCore: require('./GoNetCore').GoNetCore,
|
|
GoCloudStorageManager: require('./GoCloudStorageManager').GoCloudStorageManager
|
|
};
|