summaryrefslogtreecommitdiff
path: root/novalet/main.go
diff options
context:
space:
mode:
authormatthieu <matthieu@developershouse.xyz>2021-09-03 22:17:51 +0400
committermatthieu <matthieu@developershouse.xyz>2021-09-03 22:17:51 +0400
commitc1b170dfec41937fbc4ca14e90de768ec176fec0 (patch)
treeca3b6f0128850a5ec52548119ec4d7b2151da579 /novalet/main.go
parent3ef87c0b6cac546d74d1e37b13bfbac3c8504305 (diff)
sync project
Diffstat (limited to 'novalet/main.go')
-rw-r--r--novalet/main.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/novalet/main.go b/novalet/main.go
deleted file mode 100644
index b54711d..0000000
--- a/novalet/main.go
+++ /dev/null
@@ -1,16 +0,0 @@
-package main
-
-import (
- websocketLib "github.com/discordnova/nova/gateway/lib/gateway"
- "github.com/discordnova/nova/novalet/lib"
-)
-
-func main() {
- go lib.NewNatsStandalone()
- transporter, _ := lib.NewInternalTransporter()
- websocket := websocketLib.NewGateway(websocketLib.GatewayConnectorOptions{
- Transporter: transporter,
- })
-
- go websocket.Start()
-}