diff --git a/packages/app/src/cores/remoteStorage/index.js b/packages/app/src/cores/remoteStorage/index.js new file mode 100644 index 00000000..d18df5b8 --- /dev/null +++ b/packages/app/src/cores/remoteStorage/index.js @@ -0,0 +1,19 @@ +import Core from "evite/src/core" +import config from "config" +import axios from "axios" + +export default class RemoteStorage extends Core { + static namespace = "RemoteStorage" + static public = [] + + connection = null + + async initialize() { + + } + + async connect() { + + } + +} \ No newline at end of file