summaryrefslogtreecommitdiff
path: root/novalet/main.go
diff options
context:
space:
mode:
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()
-}