1 Star 0 Fork 0

wpkg/mailx

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
closer.go 198 Bytes
一键复制 编辑 原始数据 按行查看 历史
wen 提交于 2023-08-23 16:27 +08:00 . init
package mailx
import "io"
type closer struct {
io.Reader
io.Writer
io.Closer
}
func (c closer) Close() error {
if c.Closer != nil {
return c.Closer.Close()
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wpkg/mailx.git
git@gitee.com:wpkg/mailx.git
wpkg
mailx
mailx
v0.0.2

搜索帮助