aboutsummaryrefslogtreecommitdiff
path: root/socketConnection.js
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2021-11-07 01:23:02 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2021-11-07 01:23:02 +0800
commit2154f49bceed1ac8eeb1111ea402ddd2b243679d (patch)
treea0bb6d7150068f8cf25be3d2146302c651c4415a /socketConnection.js
parentb7848e65afbd06a9a549ee31912425680ab11536 (diff)
downloadSoopyV2-2154f49bceed1ac8eeb1111ea402ddd2b243679d.tar.gz
SoopyV2-2154f49bceed1ac8eeb1111ea402ddd2b243679d.tar.bz2
SoopyV2-2154f49bceed1ac8eeb1111ea402ddd2b243679d.zip
Add first load page (Still need to add the settings added in that though)
Diffstat (limited to 'socketConnection.js')
-rw-r--r--socketConnection.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/socketConnection.js b/socketConnection.js
new file mode 100644
index 0000000..f73c3d4
--- /dev/null
+++ b/socketConnection.js
@@ -0,0 +1,12 @@
+import WebsiteCommunicator from "./../soopyApis/websiteCommunicator"
+import socketData from "../soopyApis/socketData"
+
+class SoopyV2Server extends WebsiteCommunicator {
+ constructor(){
+ super(socketData.serverNameToId.soopyv2)
+ }
+}
+
+let soopyV2Server = new SoopyV2Server()
+
+export default soopyV2Server \ No newline at end of file