返回 DeepSeek-Reasonix
lifecycle.go
根目录 / internal / provider / responses / lifecycle.go
1 package responses
2
3 // CloseIdleConnections releases pooled HTTP connections for bounded probes.
4 func (c *client) CloseIdleConnections() {
5 if c != nil && c.http != nil {
6 c.http.CloseIdleConnections()
7 }
8 }
9
9 lines GO