1
0
mirror of https://github.com/labstack/echo.git synced 2025-01-10 00:28:23 +02:00
echo/website/content/recipes/graceful-shutdown.md
Vishal Rana 4686b25efc Updated website
Signed-off-by: Vishal Rana <vr@labstack.com>
2016-03-05 11:13:24 -08:00

30 lines
582 B
Markdown

---
title: Graceful Shutdown
menu:
side:
parent: recipes
weight: 13
---
### With [grace](https://github.com/facebookgo/grace)
`server.go`
{{< embed "graceful-shutdown/grace/server.go" >}}
### With [graceful](https://github.com/tylerb/graceful)
`server.go`
{{< embed "graceful-shutdown/graceful/server.go" >}}
### Maintainers
- [mertenvg](https://github.com/mertenvg)
### Source Code
[graceful](https://github.com/vishr/recipes/blob/master/echo.v1/graceful-shutdown/graceful)
[grace](https://github.com/vishr/recipes/blob/master/echo.v1/graceful-shutdown/grace)