AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
lifecycle.go
根目录
/
internal
/
provider
/
openai
/
lifecycle.go
1
package openai
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