| 12345678910111213141516171819202122232425262728 |
- import {
- initialize,
- sync,
- getStates,
- authorize,
- revoke,
- setConfig,
- } from './base';
- import './dropbox';
- import './onedrive';
- import './googledrive';
- import './webdav';
- import { commands } from '../utils/message';
- Object.assign(commands, {
- SyncAuthorize: authorize,
- SyncRevoke: revoke,
- SyncStart: sync,
- SyncSetConfig: setConfig,
- });
- export {
- initialize,
- sync,
- getStates,
- authorize,
- revoke,
- };
|