1
0
mirror of https://github.com/labstack/echo.git synced 2025-03-25 21:38:56 +02:00

40 lines
549 B
Go
Raw Normal View History

package main
import (
"net/http"
"github.com/labstack/echo"
mw "github.com/labstack/echo/middleware"
)
// Handler
func hello(c *echo.Context) *echo.HTTPError {
return c.String(http.StatusOK, "Hello, World!\n")
}
func main() {
// Echo instance
e := echo.New()
//------------
// Middleware
//------------
// Logger
e.Use(mw.Logger)
// Basic auth
e.Use(mw.BasicAuth(func(u, p string) bool {
if u == "joe" && p == "secret" {
return true
}
return false
}))
// Routes
e.Get("/", hello)
// Start server
e.Run(":1323")
}