aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'backend/main.go')
-rw-r--r--backend/main.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/backend/main.go b/backend/main.go
index 257647c..26859e5 100644
--- a/backend/main.go
+++ b/backend/main.go
@@ -165,12 +165,6 @@ func main() {
e := echo.New()
- e.Static("/assets", "public/assets")
-
- e.GET("/*", func(c echo.Context) error {
- return c.File("public/index.html")
- })
-
e.GET("/sock/golf/:gameId/watch", func(c echo.Context) error {
gameId := c.Param("gameId")
gameIdInt, err := strconv.Atoi(gameId)