You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Package tools contains helpers |
|
package tools |
|
|
|
import "io" |
|
|
|
// LazyClose closes an [io.Closer] and discards the error |
|
func LazyClose(p io.Closer) { |
|
if p != nil { |
|
_ = p.Close() |
|
} |
|
}
|
|
|