aboutsummaryrefslogtreecommitdiffhomepage
path: root/worker/swift/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'worker/swift/main.go')
-rw-r--r--worker/swift/main.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/worker/swift/main.go b/worker/swift/main.go
index 02a0a6a..21a9464 100644
--- a/worker/swift/main.go
+++ b/worker/swift/main.go
@@ -18,9 +18,7 @@ func main() {
e.Use(middleware.Logger())
e.Use(middleware.Recover())
- e.POST("/api/swiftc", handleSwiftCompile)
- e.POST("/api/wasmc", handleWasmCompile)
- e.POST("/api/testrun", handleTestRun)
+ e.POST("/exec", handleExec)
if err := e.Start(":80"); err != http.ErrServerClosed {
log.Fatal(err)