defer
red function literal can be simplified GO-C4005It is recommended to remove the wrapping function literal if it has a single function call. This makes the code succinct.
func foo() {
defer func() {
bar()
}()
}
func foo() {
defer bar()
}