summary refs log tree commit diff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go29
1 files changed, 0 insertions, 29 deletions
diff --git a/main.go b/main.go
deleted file mode 100644
index 9870dee..0000000
--- a/main.go
+++ /dev/null
@@ -1,29 +0,0 @@
-package main
-
-import (
-	"github.com/valyala/fasthttp"
-	"log"
-)
-
-func main() {
-	log.Print("Starting Portgate...")
-
-	// Get global Portgate config.
-	config, err := GetConfig()
-	if err != nil {
-		log.Fatal("Failed to get Portgate config.")
-	}
-
-	// Create handler for requests
-	handler := RequestHandler{
-		config: &config,
-		client: fasthttp.Client{},
-	}
-
-	// Start to listen to the outside world.
-	log.Print("Listening for requests on port 8080.")
-	err = fasthttp.ListenAndServe(config.PortgateAddress(), handler.handleRequest)
-	if err != nil {
-		log.Fatalf("Portgate server could not be started: %s", err)
-	}
-}