Files
amsterdam/server.go
T

15 lines
231 B
Go

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"))
}