Skip to content

Instantly share code, notes, and snippets.

@ykyuen
Created November 19, 2018 04:29
Show Gist options
  • Save ykyuen/8f6db5a9873c9fb99520bb8a6a30dcc6 to your computer and use it in GitHub Desktop.
Save ykyuen/8f6db5a9873c9fb99520bb8a6a30dcc6 to your computer and use it in GitHub Desktop.
setup-nested-html-template-in-go-echo-web-framework-01
package main
import (
"net/http"
"github.com/labstack/echo"
)
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