summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/labstack/echo/cookbook/graceful-shutdown/graceful/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/labstack/echo/cookbook/graceful-shutdown/graceful/server.go')
-rw-r--r--vendor/github.com/labstack/echo/cookbook/graceful-shutdown/graceful/server.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/vendor/github.com/labstack/echo/cookbook/graceful-shutdown/graceful/server.go b/vendor/github.com/labstack/echo/cookbook/graceful-shutdown/graceful/server.go
new file mode 100644
index 00000000..39e7b634
--- /dev/null
+++ b/vendor/github.com/labstack/echo/cookbook/graceful-shutdown/graceful/server.go
@@ -0,0 +1,21 @@
+package main
+
+import (
+ "net/http"
+ "time"
+
+ "github.com/labstack/echo"
+ "github.com/tylerb/graceful"
+)
+
+func main() {
+ // Setup
+ e := echo.New()
+ e.GET("/", func(c echo.Context) error {
+ return c.String(http.StatusOK, "Sue sews rose on slow joe crows nose")
+ })
+ e.Server.Addr = ":1323"
+
+ // Serve it like a boss
+ graceful.ListenAndServe(e.Server, 5*time.Second)
+}