1
0
mirror of https://github.com/labstack/echo.git synced 2026-05-16 09:48:24 +02:00
Files
echo/website/content/cookbook/graceful-shutdown.md
T
Vishal Rana 49321f5829 Updated website and examples
Signed-off-by: Vishal Rana <vr@labstack.com>
2017-01-17 10:47:16 -08:00

681 B

+++ title = "Graceful Shutdown" description = "Graceful shutdown example for Echo" [menu.main] name = "Graceful Shutdown" parent = "cookbook" weight = 13 +++

Using grace

server.go

{{< embed "graceful-shutdown/grace/server.go" >}}

Using graceful

server.go

{{< embed "graceful-shutdown/graceful/server.go" >}}

Source Code

  • [graceful]({{< source "graceful-shutdown/graceful" >}})
  • [grace]({{< source "graceful-shutdown/grace" >}})

Maintainers