UpFast/main.go

16 lines
241 B
Go
Raw Normal View History

2023-12-19 13:22:13 +01:00
package main
import (
"net/http"
"github.com/labstack/echo/v4"
)
2023-12-19 13:22:13 +01:00
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"))
2023-12-19 13:22:13 +01:00
}