summaryrefslogtreecommitdiff
path: root/src/web/app/common/scripts/streaming/drive-stream.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/app/common/scripts/streaming/drive-stream.ts')
-rw-r--r--src/web/app/common/scripts/streaming/drive-stream.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/web/app/common/scripts/streaming/drive-stream.ts b/src/web/app/common/scripts/streaming/drive-stream.ts
new file mode 100644
index 0000000000..0da3f12554
--- /dev/null
+++ b/src/web/app/common/scripts/streaming/drive-stream.ts
@@ -0,0 +1,12 @@
+import Stream from './stream';
+
+/**
+ * Drive stream connection
+ */
+export default class Connection extends Stream {
+ constructor(me) {
+ super('drive', {
+ i: me.token
+ });
+ }
+}