1/**
2 * Google Drive plugin limits supported storage to Google Drive, browser and device.
3 */
4Draw.loadPlugin(function(ui)
5{
6	ui.oneDrive = null;
7	ui.dropbox = null;
8	ui.gitLab = null;
9	ui.gitHub = null;
10	ui.notion = null;
11	ui.trello = null;
12
13	window.OneDriveClient = null;
14	window.DropboxClient = null;
15	window.TrelloClient = null;
16
17	isLocalStorage = false;
18});
19