Fix missing closer

This commit is contained in:
世界 2023-04-24 09:54:24 +08:00
parent cef8cd82b8
commit 9b0d527c3b
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -181,3 +181,8 @@ func (c *Client) Reset() {
}
c.connections.Init()
}
func (c *Client) Close() error {
c.Reset()
return nil
}