Golang Echo Print

[Solved] Golang Echo Print | Go - Code Explorer | yomemimo.com
Question : golang echo print

Answered by : mubashir-khan

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

Source : | Last Update : Wed, 02 Feb 22

Answers related to golang echo print

Code Explorer Popular Question For Go