Skip to content

Instantly share code, notes, and snippets.

@nipni
Created August 20, 2021 08:21
Show Gist options
  • Save nipni/63b1831ce86ce05fcdc79e1402640e23 to your computer and use it in GitHub Desktop.
Save nipni/63b1831ce86ce05fcdc79e1402640e23 to your computer and use it in GitHub Desktop.
Golang echo Get Started
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"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment