8 lines
121 B
Go
8 lines
121 B
Go
package verificationimp
|
|
|
|
import "fmt"
|
|
|
|
func wrap(err error, msg string) error {
|
|
return fmt.Errorf("%s: %w", msg, err)
|
|
}
|