summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/labstack/echo/cookbook/graceful-shutdown/grace/server.go
blob: 1f9937b0f96071c4a04446a46ccbef01a8057ae1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import (
	"net/http"

	"github.com/facebookgo/grace/gracehttp"
	"github.com/labstack/echo"
)

func main() {
	// Setup
	e := echo.New()
	e.GET("/", func(c echo.Context) error {
		return c.String(http.StatusOK, "Six sick bricks tick")
	})
	e.Server.Addr = ":1323"

	// Serve it like a boss
	e.Logger.Fatal(gracehttp.Serve(e.Server))
}