aboutsummaryrefslogtreecommitdiff
path: root/background/storage_server.js
diff options
context:
space:
mode:
Diffstat (limited to 'background/storage_server.js')
-rw-r--r--background/storage_server.js22
1 files changed, 7 insertions, 15 deletions
diff --git a/background/storage_server.js b/background/storage_server.js
index 9355f86..2d13690 100644
--- a/background/storage_server.js
+++ b/background/storage_server.js
@@ -41,14 +41,11 @@
* proprietary program, I am not going to enforce this in court.
*/
-/*
- * IMPORTS_START
- * IMPORT listen_for_connection
- * IMPORT get_storage
- * IMPORT list_prefixes
- * IMPORT CONNECTION_TYPE
- * IMPORTS_END
- */
+#IMPORT common/connection_types.js AS CONNECTION_TYPE
+
+#FROM common/message_server.js IMPORT listen_for_connection
+#FROM background/storage.js IMPORT get_storage
+#FROM common/stored_types.js IMPORT list_prefixes
var storage;
@@ -89,15 +86,10 @@ function new_connection(port)
remove_storage_listener(handle_change));
}
-async function start_storage_server()
+async function start()
{
storage = await get_storage();
listen_for_connection(CONNECTION_TYPE.REMOTE_STORAGE, new_connection);
}
-
-/*
- * EXPORTS_START
- * EXPORT start_storage_server
- * EXPORTS_END
- */
+#EXPORT start