mirror of
https://github.com/labstack/echo.git
synced 2024-12-22 20:06:21 +02:00
b358b06311
Signed-off-by: Vishal Rana <vr@labstack.com>
21 lines
303 B
Go
21 lines
303 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/labstack/echo"
|
|
)
|
|
|
|
func main() {
|
|
e := echo.New()
|
|
|
|
// Setting up the termination timeout to 30 seconds.
|
|
e.ShutdownTimeout = 30 * time.Second
|
|
|
|
e.GET("/", func(ctx echo.Context) error {
|
|
return ctx.String(200, "OK")
|
|
})
|
|
|
|
e.Logger.Fatal(e.Start(":1323"))
|
|
}
|