diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -42,9 +42,7 @@ func main() { if err != nil { slog.Error("cannot make new local client", "error", err) } - defer func() { - client.Teardown() - }() + defer client.Teardown() client.handleConnection() }() } |