shelves/backend/errorsx/errorsx.go
2024-11-15 11:09:19 -05:00

11 lines
115 B
Go

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