Added graceful shutdown

This commit is contained in:
2024-03-12 22:31:45 +01:00
parent d47604606f
commit 46177ccd42
8 changed files with 116 additions and 31 deletions

View File

@ -33,7 +33,7 @@ s.Get("/images/*file", func(ctx server.Context) error {
return ctx.String(ctx.Get("file"))
})
http.ListenAndServe(":8080", s)
s.Run(":8080")
```
## Tests