shelves/internal/errorsx/errorsx.go
2024-11-16 14:31:32 -05:00

11 lines
115 B
Go

package errorsx
func String(err error) string {
out := ""
if err != nil {
out = err.Error()
}
return out
}