aboutsummaryrefslogtreecommitdiffhomepage
path: root/worker/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'worker/main.go')
-rw-r--r--worker/main.go39
1 files changed, 0 insertions, 39 deletions
diff --git a/worker/main.go b/worker/main.go
deleted file mode 100644
index ac65305..0000000
--- a/worker/main.go
+++ /dev/null
@@ -1,39 +0,0 @@
-package main
-
-import (
- "log"
- "net/http"
- "os"
-
- echojwt "github.com/labstack/echo-jwt/v4"
- "github.com/labstack/echo/v4"
- "github.com/labstack/echo/v4/middleware"
-)
-
-func main() {
- jwtSecret := os.Getenv("ALBATROSS_JWT_SECRET")
- if jwtSecret == "" {
- log.Fatal("ALBATROSS_JWT_SECRET is not set")
- }
-
- if err := prepareDirectories(); err != nil {
- log.Fatal(err)
- }
-
- e := echo.New()
-
- e.Use(middleware.Logger())
- e.Use(middleware.Recover())
-
- e.Use(echojwt.WithConfig(echojwt.Config{
- SigningKey: []byte(jwtSecret),
- }))
-
- e.POST("/api/swiftc", handleSwiftCompile)
- e.POST("/api/wasmc", handleWasmCompile)
- e.POST("/api/testrun", handleTestRun)
-
- if err := e.Start(":80"); err != http.ErrServerClosed {
- log.Fatal(err)
- }
-}