Skip to content

Instantly share code, notes, and snippets.

@gufranmirza
Created June 21, 2019 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gufranmirza/918f465a719184c90324e13b5a389eff to your computer and use it in GitHub Desktop.
Save gufranmirza/918f465a719184c90324e13b5a389eff to your computer and use it in GitHub Desktop.
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!")
})
h := &handler{}
e.POST("/login", h.login)
e.Logger.Fatal(e.Start(":1323"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment