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

30 lines
582 B
Markdown
Raw Normal View History

---
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)