diff --git a/backend/main.go b/backend/main.go index ee6be46..ba7345b 100644 --- a/backend/main.go +++ b/backend/main.go @@ -11,6 +11,9 @@ func main() { fmt.Println("Welcome to lst backend where all the fun happens.") r := gin.Default() + // Serve Docusaurus static files + r.StaticFS("/lst/docs", http.Dir("../lst-docs/build")) + r.GET("/api/ping", func(c *gin.Context) { c.JSON(200, gin.H{"message": "pong"})