diff options
Diffstat (limited to 'internal/assets/assets.go')
-rw-r--r-- | internal/assets/assets.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/internal/assets/assets.go b/internal/assets/assets.go new file mode 100644 index 00000000..47a5936d --- /dev/null +++ b/internal/assets/assets.go @@ -0,0 +1,13 @@ +package assets + +import ( + "strings" +) + +// IsErrNotFound returns true if the error is asset not found. +func IsErrNotFound(err error) bool { + if err == nil { + return false + } + return strings.Contains(err.Error(), "not found") +} |