added echo framework and created a hello world

This commit is contained in:
2026-01-14 20:00:07 -05:00
parent 3405160813
commit 7448dfff30
3 changed files with 52 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
import (
"net/http"
"github.com/labstack/echo/v4"
)
func main() {
e := echo.New()
e.GET("/", func(c echo.Context) error {
return c.String(http.StatusOK, "Hello, World!")
})
e.Logger.Fatal(e.Start(":1323"))
}