Added graceful shutdown

This commit is contained in:
Eduard Urbach 2024-03-12 22:31:45 +01:00
parent 784c4e85fb
commit 1592310738
Signed by: eduard
GPG key ID: 49226B848C78F6C8
8 changed files with 116 additions and 31 deletions

View file

@ -4,6 +4,6 @@ import "sync"
var contextPool = sync.Pool{
New: func() any {
return &context{}
return &ctx{}
},
}