mirror of
https://github.com/labstack/echo.git
synced 2025-01-10 00:28:23 +02:00
c8d77b2675
Signed-off-by: Vishal Rana <vr@labstack.com>
30 lines
592 B
Markdown
30 lines
592 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/recipes/graceful-shutdown/graceful)
|
|
|
|
[grace](https://github.com/vishr/recipes/blob/master/echo/recipes/graceful-shutdown/grace)
|